nf-core_modules/modules/ataqv/mkarv/main.nf

36 lines
937 B
Text
Raw Normal View History

process ATAQV_MKARV {
label 'process_medium'
conda (params.enable_conda ? "bioconda::ataqv=1.3.0" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/ataqv:1.3.0--py39hccc85d7_2':
'quay.io/biocontainers/ataqv:1.3.0--py39hccc85d7_2' }"
input:
path json
output:
path "html" , emit: html
path "versions.yml", emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
"""
mkarv \\
$args \\
--concurrency $task.cpus \\
--force \\
./html/ \\
${json.join(' ')}
cat <<-END_VERSIONS > versions.yml
"${task.process}":
# mkarv: \$( mkarv --version ) # Use this when version string has been fixed
ataqv: \$( ataqv --version )
END_VERSIONS
"""
}