mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
24 lines
821 B
Text
24 lines
821 B
Text
process CUSTOM_DUMPSOFTWAREVERSIONS {
|
|
label 'process_low'
|
|
|
|
// Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container
|
|
conda (params.enable_conda ? "bioconda::multiqc=1.11" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/multiqc:1.11--pyhdfd78af_0' :
|
|
'quay.io/biocontainers/multiqc:1.11--pyhdfd78af_0' }"
|
|
|
|
input:
|
|
path versions
|
|
|
|
output:
|
|
path "software_versions.yml" , emit: yml
|
|
path "software_versions_mqc.yml", emit: mqc_yml
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
template 'dumpsoftwareversions.py'
|
|
}
|