nf-core_modules/software/multiqc/test/main.nf

26 lines
588 B
Text
Raw Normal View History

2020-11-23 08:01:55 -05:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { MULTIQC } from '../main.nf' addParams( options: [ publish_dir:'test_multi' ] )
2020-11-23 08:01:55 -05:00
/*
* Test with single-end data
*/
workflow test_multi {
2020-11-23 08:01:55 -05:00
def input = []
input = [
file("${baseDir}/input/test_1_fastqc.html", checkIfExists: true),
file("${baseDir}/input/test_2_fastqc.html", checkIfExists: true),
file("${baseDir}/input/test_1_fastqc.zip", checkIfExists: true),
file("${baseDir}/input/test_2_fastqc.zip", checkIfExists: true)
]
2020-11-23 08:01:55 -05:00
MULTIQC ( input )
2020-11-23 08:01:55 -05:00
}
workflow {
test_multi()
2020-11-23 08:01:55 -05:00
}