2020-12-01 01:49:52 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { MULTIQC } from '../../../software/multiqc/main.nf' addParams(options: [publish_dir: 'test_multiqc'])
|
2020-12-04 01:55:16 -05:00
|
|
|
include { test_paired_end } from '../fastqc/main.nf' addParams(options: [publish_dir: 'test_paired_end'])
|
|
|
|
|
2020-12-01 01:49:52 -05:00
|
|
|
workflow test_multiqc {
|
2020-12-02 23:12:34 -05:00
|
|
|
test_paired_end()
|
2020-12-01 01:49:52 -05:00
|
|
|
|
2020-12-02 23:12:34 -05:00
|
|
|
input = [
|
2020-12-08 08:38:00 -05:00
|
|
|
test_paired_end.out.zip.collect { it[1] }.ifEmpty([])
|
2020-12-02 23:12:34 -05:00
|
|
|
]
|
2020-12-01 01:49:52 -05:00
|
|
|
|
2020-12-04 01:55:16 -05:00
|
|
|
MULTIQC(*input)
|
2020-12-01 01:49:52 -05:00
|
|
|
}
|