Skip to content

Commit

Permalink
Revert "test: Remove multiqc export with test profile"
Browse files Browse the repository at this point in the history
This reverts commit 39cd9b6.
  • Loading branch information
edmundmiller committed Oct 14, 2024
1 parent 47cadcd commit 6b5e1cd
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 14 deletions.
3 changes: 1 addition & 2 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 1 addition & 2 deletions conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 0 additions & 5 deletions conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -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\"" : '' }
}
}
5 changes: 0 additions & 5 deletions tests/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -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\"" : '' }
}
}

0 comments on commit 6b5e1cd

Please sign in to comment.