mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
a0443e2c54
* Update main.nf * Update meta.yml * Re-add logos as not staged in a way that works with MultiQC config files * Update main.nf * Remove now unnecessary input channel * Remove unused channel from tests * Update hAMRonization to 1.1.1 and add hAMRonization farGene * Fix hamronizatio ntests * Prettier * Fix fargene linting * Correct file * Fix fargene output * Apply suggestions from code review Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com> * Fix summarise tests * Prettier * Fix incorrect quotes in tags Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com>
30 lines
781 B
Text
30 lines
781 B
Text
process GUNC_DOWNLOADDB {
|
|
tag "$db_name"
|
|
label 'process_single'
|
|
|
|
conda (params.enable_conda ? "bioconda::gunc=1.0.5" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/gunc:1.0.5--pyhdfd78af_0' :
|
|
'quay.io/biocontainers/gunc:1.0.5--pyhdfd78af_0' }"
|
|
|
|
input:
|
|
val db_name
|
|
|
|
output:
|
|
path "*.dmnd" , emit: db
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
"""
|
|
gunc download_db . -db $db_name $args
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
gunc: \$( gunc --version )
|
|
END_VERSIONS
|
|
"""
|
|
}
|