mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Fixed version annotation
This commit is contained in:
parent
4b04ca22dd
commit
b8a59c2b17
1 changed files with 4 additions and 1 deletions
|
@ -24,6 +24,8 @@ process VARDICTJAVA {
|
||||||
def args2 = task.ext.args2 ?: ''
|
def args2 = task.ext.args2 ?: ''
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
|
|
||||||
|
def VERSION = '1.8.3'
|
||||||
|
|
||||||
"""
|
"""
|
||||||
vardict-java \\
|
vardict-java \\
|
||||||
$args \\
|
$args \\
|
||||||
|
@ -41,7 +43,8 @@ process VARDICTJAVA {
|
||||||
|
|
||||||
cat <<-END_VERSIONS > versions.yml
|
cat <<-END_VERSIONS > versions.yml
|
||||||
"${task.process}":
|
"${task.process}":
|
||||||
vardict-java: \$(echo 1.8.3)
|
vardict-java: \$VERSION
|
||||||
|
var2vcf_valid.pl: \$(echo \$(var2vcf_valid.pl -h | sed -n 2p | awk '{ print \$2 }'))
|
||||||
END_VERSIONS
|
END_VERSIONS
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue