mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
37 lines
1 KiB
Text
37 lines
1 KiB
Text
process MERYL_COUNT {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::meryl=1.3" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/meryl:1.3--h87f3376_1':
|
|
'quay.io/biocontainers/meryl:1.3--h87f3376_1' }"
|
|
|
|
input:
|
|
tuple val(meta), path(reads)
|
|
|
|
output:
|
|
tuple val(meta), path("*.meryldb"), emit: meryl_db
|
|
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}"
|
|
"""
|
|
for READ in $reads; do
|
|
meryl count \\
|
|
threads=$task.cpus \\
|
|
$args \\
|
|
$reads \\
|
|
output read.\${READ%.f*}.meryldb
|
|
done
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
meryl: \$( meryl --version |& sed 's/meryl //' )
|
|
END_VERSIONS
|
|
"""
|
|
}
|