diff --git a/assets/multiqc_config.yml b/assets/multiqc_config.yml index f27a64ca..525f129a 100644 --- a/assets/multiqc_config.yml +++ b/assets/multiqc_config.yml @@ -30,7 +30,6 @@ sp: fn: "*.tdplot_mqc.jpg" ignore_images: false -# BUG https://github.com/MultiQC/MultiQC/pull/2888 -export_plots: false +export_plots: true disable_version_detection: true diff --git a/conf/modules.config b/conf/modules.config index b2d5f406..e254bb62 100644 --- a/conf/modules.config +++ b/conf/modules.config @@ -28,8 +28,7 @@ process { } withName: 'MULTIQC' { - // BUG https://github.com/MultiQC/MultiQC/pull/2888 - ext.args = { params.multiqc_title ? "--title \"$params.multiqc_title\" --export" : '--export' } + ext.args = { params.multiqc_title ? "--title \"$params.multiqc_title\"" : '' } publishDir = [ path: { "${params.outdir}/multiqc" }, mode: params.publish_dir_mode, diff --git a/conf/test.config b/conf/test.config index e271b937..cc5193aa 100644 --- a/conf/test.config +++ b/conf/test.config @@ -44,9 +44,4 @@ process { // HACK Tests fail after latest modules update ext.args = { "--disable-small" } } - - // BUG https://github.com/MultiQC/MultiQC/pull/2888 - withName: 'MULTIQC' { - ext.args = { params.multiqc_title ? "--title \"$params.multiqc_title\"" : '' } - } } diff --git a/tests/nextflow.config b/tests/nextflow.config index fc18e8a8..3aba030e 100644 --- a/tests/nextflow.config +++ b/tests/nextflow.config @@ -48,9 +48,4 @@ process { // HACK Tests fail after latest modules update ext.args = { "--disable-small" } } - - // BUG https://github.com/MultiQC/MultiQC/pull/2888 - withName: 'MULTIQC' { - ext.args = { params.multiqc_title ? "--title \"$params.multiqc_title\"" : '' } - } }