nf-core_modules/tests/modules/multiqc/main.nf

32 lines
1,009 B
Text
Raw Normal View History

2020-12-01 06:49:52 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
2022-06-07 11:58:27 +00:00
include { FASTQC } from '../../../modules/fastqc/main.nf'
include { FASTQC as FASTQC2 } from '../../../modules/fastqc/main.nf'
include { MULTIQC } from '../../../modules/multiqc/main.nf'
2020-12-04 06:55:16 +00:00
2020-12-01 06:49:52 +00:00
workflow test_multiqc {
2021-02-03 17:43:14 +00:00
input = [ [ id: 'test', single_end: false ],
2022-06-07 11:58:27 +00:00
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
2021-02-03 17:43:14 +00:00
FASTQC ( input )
2022-06-08 11:48:27 +00:00
MULTIQC ( FASTQC.out.zip.collect { it[1] }, [[],[]] )
2020-12-01 06:49:52 +00:00
}
2022-06-07 11:58:27 +00:00
workflow test_multiqc_fn_collision {
fqc_input = [ [ id: 'test', single_end: false ],
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
mqc_input = Channel.empty()
FASTQC ( fqc_input )
mqc_input = mqc_input.mix(FASTQC.out.zip.collect { it[1] })
FASTQC2 ( fqc_input )
mqc_input = mqc_input.mix(FASTQC2.out.zip.collect { it[1] })
2022-06-08 11:48:27 +00:00
MULTIQC ( mqc_input, [[],[]] )
2022-06-07 11:58:27 +00:00
}