Skip to content
Snippets Groups Projects
Commit 2d4e6017 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

Merge remote-tracking branch 'origin/develop' into BIOWDL-213

parents 4b87337d 43129743
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,7 @@ task VarDict {
Int endColumn = 3
Int geneColumn = 4
Int threads = 1
Int memory = 16
Float memoryMultiplier = 2.5
String dockerTag = "1.5.8--1"
......@@ -32,6 +33,7 @@ task VarDict {
set -e -o pipefail
export JAVA_OPTS="-Xmx~{memory}G"
vardict-java \
~{"-th " + threads} \
-G ~{reference.fasta} \
-N ~{tumorSampleName} \
-b "~{tumorBam.file}~{"|" + normalBamFile}" \
......@@ -53,6 +55,7 @@ task VarDict {
}
runtime {
cpu: threads + 2
memory: ceil(memory * memoryMultiplier)
docker: "quay.io/biocontainers/vardict-java:" + dockerTag
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment