2020-08-05 12:28:25 -04:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
2020-08-07 07:18:53 -04:00
|
|
|
nextflow.enable.dsl = 2
|
2020-08-05 12:28:25 -04:00
|
|
|
|
2020-10-15 05:47:15 -04:00
|
|
|
include { TRIMGALORE as TRIMGALORE_SE } from '../main.nf' addParams( options: [ publish_dir:'test_single_end' ] )
|
|
|
|
include { TRIMGALORE as TRIMGALORE_PE } from '../main.nf' addParams( options: [ publish_dir:'test_paired_end' ] )
|
2020-08-07 07:18:53 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test with single-end data
|
|
|
|
*/
|
|
|
|
workflow test_single_end {
|
|
|
|
|
|
|
|
def input = []
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
|
|
[ file("${baseDir}/input/test_single_end.fastq.gz", checkIfExists: true) ] ]
|
|
|
|
|
2020-10-15 05:47:15 -04:00
|
|
|
TRIMGALORE_SE ( input )
|
2020-08-05 12:28:25 -04:00
|
|
|
}
|
|
|
|
|
2020-08-07 07:18:53 -04:00
|
|
|
/*
|
|
|
|
* Test with paired-end data
|
|
|
|
*/
|
|
|
|
workflow test_paired_end {
|
2020-08-05 12:28:25 -04:00
|
|
|
|
2020-08-07 07:18:53 -04:00
|
|
|
def input = []
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
|
|
[ file("${baseDir}/input/test_R1.fastq.gz", checkIfExists: true),
|
|
|
|
file("${baseDir}/input/test_R2.fastq.gz", checkIfExists: true) ] ]
|
|
|
|
|
2020-10-15 05:47:15 -04:00
|
|
|
TRIMGALORE_PE ( input )
|
2020-08-07 07:18:53 -04:00
|
|
|
}
|
2020-08-05 12:28:25 -04:00
|
|
|
|
|
|
|
workflow {
|
2020-08-07 07:18:53 -04:00
|
|
|
test_single_end()
|
|
|
|
test_paired_end()
|
|
|
|
}
|