mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-23 19:48:16 +00:00
35 lines
899 B
Text
35 lines
899 B
Text
|
process MASH_DIST {
|
||
|
tag "$meta.id"
|
||
|
label 'process_low'
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::mash=2.3" : null)
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/mash:2.3--he348c14_1' :
|
||
|
'quay.io/biocontainers/mash:2.3--he348c14_1' }"
|
||
|
|
||
|
input:
|
||
|
tuple val(meta), path(query)
|
||
|
path reference
|
||
|
|
||
|
output:
|
||
|
tuple val(meta), path("*.txt"), emit: dist
|
||
|
path "versions.yml" , emit: versions
|
||
|
|
||
|
script:
|
||
|
def args = task.ext.args ?: ''
|
||
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||
|
"""
|
||
|
mash \\
|
||
|
dist \\
|
||
|
-p $task.cpus \\
|
||
|
$args \\
|
||
|
$reference \\
|
||
|
$query > ${prefix}.txt
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
mash: \$(mash --version 2>&1)
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|