mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
35 lines
913 B
Text
35 lines
913 B
Text
process SHASUM {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
|
|
conda (params.enable_conda ? "conda-forge::coreutils=9.1" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
|
|
'ubuntu:20.04' }"
|
|
|
|
input:
|
|
tuple val(meta), path(file)
|
|
|
|
output:
|
|
tuple val(meta), path("*.sha256"), 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}"
|
|
|
|
"""
|
|
sha256sum \\
|
|
$args \\
|
|
${file} \\
|
|
> ${file}.sha256
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
sha256sum: \$(echo \$(sha256sum --version 2>&1 | head -n 1| sed 's/^.*) //;' ))
|
|
END_VERSIONS
|
|
"""
|
|
}
|