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

34 lines
985 B
Text
Raw Normal View History

2020-12-01 01:49:52 -05:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
2022-06-07 07:58:27 -04: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 01:55:16 -05:00
2020-12-01 01:49:52 -05:00
workflow test_multiqc {
2022-06-08 08:42:58 -04:00
input = [
[ id: 'test', single_end: false ],
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
2021-02-03 12:43:14 -05:00
FASTQC ( input )
2022-06-08 07:48:27 -04:00
MULTIQC ( FASTQC.out.zip.collect { it[1] }, [[],[]] )
2020-12-01 01:49:52 -05:00
}
2022-06-07 07:58:27 -04:00
workflow test_multiqc_fn_collision {
2022-06-08 08:42:58 -04:00
fqc_input = [
[ id: 'test', single_end: false ],
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
2022-06-07 07:58:27 -04:00
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 07:48:27 -04:00
MULTIQC ( mqc_input, [[],[]] )
2022-06-07 07:58:27 -04:00
}