2021-01-29 03:33:45 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 05:10:18 -04:00
|
|
|
include { CUTADAPT } from '../../../modules/cutadapt/main.nf' addParams( options: [ args:'-q 25' ] )
|
2021-01-29 03:33:45 -05:00
|
|
|
|
2021-05-12 09:56:46 -04:00
|
|
|
//
|
|
|
|
// Test with single-end data
|
|
|
|
//
|
2021-02-03 11:02:58 -05:00
|
|
|
workflow test_cutadapt_single_end {
|
2021-01-29 03:33:45 -05:00
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-05-12 09:56:46 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
CUTADAPT ( input )
|
2021-01-29 03:33:45 -05:00
|
|
|
}
|
|
|
|
|
2021-05-12 09:56:46 -04:00
|
|
|
//
|
|
|
|
// Test with paired-end data
|
|
|
|
//
|
2021-02-03 11:02:58 -05:00
|
|
|
workflow test_cutadapt_paired_end {
|
2021-01-29 03:33:45 -05:00
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 14:18:01 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
2021-05-12 09:56:46 -04:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
CUTADAPT ( input )
|
2021-01-29 03:33:45 -05:00
|
|
|
}
|
|
|
|
|