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