2021-02-12 16:22:07 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-09-28 20:14:11 +00:00
|
|
|
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 {
|
2021-09-28 20:14:11 +00:00
|
|
|
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 {
|
2021-09-28 20:14:11 +00:00
|
|
|
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 )
|
|
|
|
}
|