nf-core_modules/modules/pycoqc/main.nf
2022-02-04 09:53:32 +01:00

35 lines
908 B
Text

process PYCOQC {
tag "$summary"
label 'process_medium'
conda (params.enable_conda ? "bioconda::pycoqc=2.5.2" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/pycoqc:2.5.2--py_0' :
'quay.io/biocontainers/pycoqc:2.5.2--py_0' }"
input:
path summary
output:
path "*.html" , emit: html
path "*.json" , emit: json
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
"""
pycoQC \\
$args \\
-f $summary \\
-o pycoqc.html \\
-j pycoqc.json
cat <<-END_VERSIONS > versions.yml
"${task.process}":
pycoqc: \$(pycoQC --version 2>&1 | sed 's/^.*pycoQC v//; s/ .*\$//')
END_VERSIONS
"""
}