nf-core_modules/tests/modules/cat/fastq/main.nf

28 lines
1,019 B
Text
Raw Normal View History

2021-02-12 16:22:07 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { CAT_FASTQ } from '../../../../modules/cat/fastq/main.nf' addParams( options: [publish_dir:'cat'] )
2021-02-12 16:22:07 +00:00
workflow test_cat_fastq_single_end {
input = [
[ id:'test', single_end:true ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test2_1_fastq_gz'], checkIfExists: true) ]
]
2021-02-12 16:22:07 +00:00
CAT_FASTQ ( input )
}
workflow test_cat_fastq_paired_end {
input = [
[ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test2_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test2_2_fastq_gz'], checkIfExists: true) ]
]
2021-02-12 16:22:07 +00:00
CAT_FASTQ ( input )
}