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 {
|
2022-06-08 12:42:58 +00:00
|
|
|
input = [
|
|
|
|
[ id: 'test', single_end: false ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
|
|
|
|
]
|
2021-03-24 18:29:41 +00:00
|
|
|
|
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 {
|
2022-06-08 12:42:58 +00:00
|
|
|
fqc_input = [
|
2022-06-08 12:24:55 +00:00
|
|
|
[ id: 'test', single_end: false ],
|
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
|
|
|
|
]
|
2022-06-07 11:58:27 +00: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 11:48:27 +00:00
|
|
|
MULTIQC ( mqc_input, [[],[]] )
|
2022-06-07 11:58:27 +00:00
|
|
|
}
|