nf-core_modules/software/SOFTWARE/TOOL/test/main.nf

36 lines
802 B
Text
Raw Normal View History

2020-08-06 10:32:38 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
2020-08-07 10:31:07 +00:00
include { FASTQC } from '../main.nf'
2020-08-06 10:32:38 +00:00
2020-08-07 10:31:07 +00: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) ] ]
FASTQC ( input, [ publish_dir:'test_single_end' ] )
}
/*
* Test with paired-end data
*/
workflow test_paired_end {
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) ] ]
FASTQC ( input, [ publish_dir:'test_paired_end' ] )
}
2020-08-06 10:32:38 +00:00
workflow {
2020-08-07 10:31:07 +00:00
test_single_end()
test_paired_end()
2020-08-06 10:32:38 +00:00
}