2021-09-29 13:27:00 +00:00
|
|
|
process CUSTOM_DUMPSOFTWAREVERSIONS {
|
2022-09-07 08:33:05 +00:00
|
|
|
label 'process_single'
|
2021-09-29 13:27:00 +00:00
|
|
|
|
|
|
|
// Requires `pyyaml` which does not have a dedicated container but is in the MultiQC container
|
2022-07-21 09:44:07 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::multiqc=1.13a' : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-07-21 09:44:07 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/multiqc:1.13a--pyhdfd78af_1' :
|
|
|
|
'quay.io/biocontainers/multiqc:1.13a--pyhdfd78af_1' }"
|
2021-09-29 13:27:00 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
path versions
|
|
|
|
|
|
|
|
output:
|
2021-10-01 13:04:56 +00:00
|
|
|
path "software_versions.yml" , emit: yml
|
|
|
|
path "software_versions_mqc.yml", emit: mqc_yml
|
|
|
|
path "versions.yml" , emit: versions
|
2021-09-29 13:27:00 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-09-29 13:27:00 +00:00
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
template 'dumpsoftwareversions.py'
|
2021-09-29 13:27:00 +00:00
|
|
|
}
|