From cd7e49ee85ef5f98a8572f312422173f43b712e9 Mon Sep 17 00:00:00 2001
From: npappas <N.Pappas@lumc.nl>
Date: Tue, 8 May 2018 14:39:28 +0200
Subject: [PATCH] Add/remove runtime defaults

---
 flash.wdl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/flash.wdl b/flash.wdl
index 849813b..90c522e 100644
--- a/flash.wdl
+++ b/flash.wdl
@@ -8,8 +8,8 @@ task flash {
     Int? minOverlap
     Int? maxOverlap
     Boolean? compress = true
-    Int? threads = 1
-    Int? memory = 4
+    Int? threads
+    Int? memory
 
     command {
         set -e -o pipefail
@@ -35,8 +35,8 @@ task flash {
     }
 
     runtime {
-        cpu: select_first([threads])
-        memory: select_first([memory])
+        cpu: select_first([threads, 2])
+        memory: select_first([memory, 2])
     }
 
 }
\ No newline at end of file
-- 
GitLab