2020-11-23 08:01:55 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2020-11-29 02:50:23 -05:00
|
|
|
include { MULTIQC } from '../main.nf' addParams( options: [ publish_dir:'test_multi' ] )
|
2020-11-23 08:01:55 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test with single-end data
|
|
|
|
*/
|
2020-11-29 02:50:23 -05:00
|
|
|
workflow test_multi {
|
2020-11-23 08:01:55 -05:00
|
|
|
|
|
|
|
def input = []
|
2020-11-29 02:50:23 -05:00
|
|
|
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
|
|
|
|
2020-11-29 02:50:23 -05:00
|
|
|
MULTIQC ( input )
|
2020-11-23 08:01:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
workflow {
|
2020-11-29 02:50:23 -05:00
|
|
|
test_multi()
|
2020-11-23 08:01:55 -05:00
|
|
|
}
|