mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
40 lines
1 KiB
Text
40 lines
1 KiB
Text
|
process NEXTCLADE_DATASETGET {
|
||
|
tag "$dataset"
|
||
|
label 'process_low'
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::nextclade=1.9.0" : null)
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/nextclade:1.9.0--h9ee0642_0' :
|
||
|
'quay.io/biocontainers/nextclade:1.9.0--h9ee0642_0' }"
|
||
|
|
||
|
input:
|
||
|
val dataset
|
||
|
val reference
|
||
|
val tag
|
||
|
|
||
|
output:
|
||
|
path "$prefix" , emit: dataset
|
||
|
path "versions.yml", emit: versions
|
||
|
|
||
|
script:
|
||
|
def args = task.ext.args ?: ''
|
||
|
prefix = task.ext.prefix ?: "${dataset}"
|
||
|
def fasta = reference ? "--reference ${reference}" : ''
|
||
|
def version = tag ? "--tag ${tag}" : ''
|
||
|
"""
|
||
|
nextclade \\
|
||
|
dataset \\
|
||
|
get \\
|
||
|
$args \\
|
||
|
--name $dataset \\
|
||
|
$fasta \\
|
||
|
$version \\
|
||
|
--output-dir $prefix
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
nextclade: \$(nextclade --version 2>&1)
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|