2020-12-01 06:49:52 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { MULTIQC } from '../../../software/multiqc/main.nf' addParams(options: [publish_dir: 'test_multiqc'])
|
|
|
|
|
|
|
|
|
|
|
|
workflow test_multiqc {
|
|
|
|
|
|
|
|
def input = []
|
|
|
|
|
|
|
|
input = [[id: 'test'], // meta map
|
2020-12-02 07:08:41 +00:00
|
|
|
[file("${launchDir}/tests/data/fastqc/test_1_fastqc.html", checkIfExists: true),
|
|
|
|
file("${launchDir}/tests/data/fastqc/test_1_fastqc.zip", checkIfExists: true),
|
|
|
|
file("${launchDir}/tests/data/fastqc/test_2_fastqc.html", checkIfExists: true),
|
|
|
|
file("${launchDir}/tests/data/fastqc/test_2_fastqc.zip", checkIfExists: true)]]
|
2020-12-01 06:49:52 +00:00
|
|
|
|
|
|
|
MULTIQC(input)
|
|
|
|
}
|