mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
1363130410
removed a redundant input field from vcfanno Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>
51 lines
1.3 KiB
Text
51 lines
1.3 KiB
Text
process VCFANNO {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
|
|
conda (params.enable_conda ? "bioconda::vcfanno=0.3.3" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/vcfanno:0.3.3--h9ee0642_0':
|
|
'quay.io/biocontainers/vcfanno:0.3.3--h9ee0642_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(vcf), path(tbi)
|
|
path toml
|
|
path resource_dir
|
|
|
|
output:
|
|
tuple val(meta), path("*_annotated.vcf"), emit: vcf
|
|
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}"
|
|
"""
|
|
ln -sf $resource_dir/* \$(pwd)
|
|
|
|
vcfanno \\
|
|
-p $task.cpus \\
|
|
$args \\
|
|
$toml \\
|
|
$vcf \\
|
|
> ${prefix}_annotated.vcf
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
vcfanno: \$(echo \$(vcfanno 2>&1 | grep version | cut -f3 -d' ' ))
|
|
END_VERSIONS
|
|
"""
|
|
|
|
stub:
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
"""
|
|
touch ${prefix}_annotated.vcf
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
vcfanno: \$(echo \$(vcfanno 2>&1 | grep version | cut -f3 -d' ' ))
|
|
END_VERSIONS
|
|
"""
|
|
}
|