2022-05-06 07:20:40 +00:00
|
|
|
process MD5SUM {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
|
2022-05-06 09:07:05 +00:00
|
|
|
conda (params.enable_conda ? "conda-forge::coreutils=9.1" : null)
|
2022-05-06 08:44:51 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-05-06 09:07:05 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
|
|
|
|
'ubuntu:20.04' }"
|
2022-05-06 07:20:40 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(file)
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.md5"), emit: checksum
|
|
|
|
path "versions.yml" , emit: versions
|
|
|
|
|
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
|
|
|
script:
|
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
|
|
|
|
|
|
"""
|
|
|
|
md5sum \\
|
|
|
|
$args \\
|
|
|
|
${file} \\
|
|
|
|
> ${file}.md5
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
md5sum: \$(echo \$(md5sum --version 2>&1 | head -n 1| sed 's/^.*) //;' ))
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|