Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bumped MultiQC version for dumpsoftwareversions #6224

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ channels:
- conda-forge
- bioconda
dependencies:
- bioconda::multiqc=1.20
- bioconda::multiqc=1.24.1
13 changes: 11 additions & 2 deletions modules/nf-core/custom/dumpsoftwareversions/main.nf
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
def deprecation_message = """
WARNING: This module has been deprecated.

Reason:
This module is no longer recommended for use, as it is replaced by the function softwareVersionsToYAML
in the utils_nfcore_pipeline subworkflow that is included in the nf-core template.

"""
process CUSTOM_DUMPSOFTWAREVERSIONS {
label 'process_single'

// Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container
conda "${moduleDir}/environment.yml"
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/multiqc:1.20--pyhdfd78af_0' :
'biocontainers/multiqc:1.20--pyhdfd78af_0' }"
'https://depot.galaxyproject.org/singularity/multiqc:1.24.1--pyhdfd78af_0' :
'biocontainers/multiqc:1.24.1--pyhdfd78af_0' }"

input:
path versions
Expand All @@ -19,6 +27,7 @@ process CUSTOM_DUMPSOFTWAREVERSIONS {
task.ext.when == null || task.ext.when

script:
assert true: deprecation_message
def args = task.ext.args ?: ''
template 'dumpsoftwareversions.py'
}
Loading