Skip to content
Snippets Groups Projects
Commit 0ec5ac32 authored by cedrick's avatar cedrick
Browse files

minor fix

parent 14de39c5
No related branches found
No related tags found
No related merge requests found
version 1.0 version 1.0
import "bwa.wdl"
task Prediction { task Prediction {
input { input {
File bamFile File bamFile
...@@ -30,7 +30,7 @@ task Prediction { ...@@ -30,7 +30,7 @@ task Prediction {
runtime { runtime {
cpu: threads cpu: threads
memory: mem memory: memory
docker: dockerImage docker: dockerImage
} }
......
...@@ -88,7 +88,7 @@ task Germline { ...@@ -88,7 +88,7 @@ task Germline {
Boolean exome = false Boolean exome = false
Int cores = 1 Int cores = 1
String memory = "4G" Int memoryGb = 4
} }
command { command {
...@@ -103,7 +103,7 @@ task Germline { ...@@ -103,7 +103,7 @@ task Germline {
~{runDir}/runWorkflow.py \ ~{runDir}/runWorkflow.py \
-m local \ -m local \
-j ~{cores} \ -j ~{cores} \
-g ~{memory} -g ~{memoryGb}
} }
output { output {
...@@ -113,7 +113,7 @@ task Germline { ...@@ -113,7 +113,7 @@ task Germline {
runtime { runtime {
cpu: cores cpu: cores
memory: memory memory: "~{memoryGb}G"
docker: dockerImage docker: dockerImage
} }
} }
......
...@@ -638,7 +638,7 @@ task RenameSample { ...@@ -638,7 +638,7 @@ task RenameSample {
runtime { runtime {
docker: dockerImage docker: dockerImage
memory = memory memory: memory
} }
} }
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