diff --git a/tests/software/multiqc/main.nf b/tests/software/multiqc/main.nf index 3084a855..8bc429c6 100644 --- a/tests/software/multiqc/main.nf +++ b/tests/software/multiqc/main.nf @@ -5,7 +5,7 @@ nextflow.enable.dsl = 2 include { MULTIQC } from '../../../software/multiqc/main.nf' addParams(options: [publish_dir: 'test_multiqc']) include { test_paired_end } from '../fastqc/main.nf' addParams(options: [publish_dir: 'test_paired_end']) -ch_multiqc_config = file("$launchDir/tests/data/multiqc/multiqc_config.yaml", checkIfExists: true) +ch_multiqc_config = file("$launchDir/tests/software/multiqc/multiqc_config.yml", checkIfExists: true) ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath(params.multiqc_config) : Channel.empty() workflow test_multiqc { diff --git a/tests/data/multiqc/multiqc_config.yaml b/tests/software/multiqc/multiqc_config.yml similarity index 100% rename from tests/data/multiqc/multiqc_config.yaml rename to tests/software/multiqc/multiqc_config.yml