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

46 lines
1.4 KiB
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 {
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-02-03 17:43:14 +00:00
FASTQC ( input )
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 = [
[ 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] })
MULTIQC ( mqc_input, [], [], [] )
}
workflow test_multiqc_config {
input = [
[ id: 'test', single_end: false ],
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)]
]
mqc_config = file("https://github.com/nf-core/tools/raw/dev/nf_core/pipeline-template/assets/multiqc_config.yml", checkIfExists: true)
mqc_input = Channel.empty()
FASTQC ( input )
MULTIQC ( FASTQC.out.zip.collect { it[1] }, mqc_config, [], [] )
2022-06-07 11:58:27 +00:00
}