From d922d7b9ed01de0f0dd64415a6990bb88425a465 Mon Sep 17 00:00:00 2001
From: npappas <N.Pappas@lumc.nl>
Date: Tue, 8 May 2018 13:21:58 +0200
Subject: [PATCH] Change cores to threads

---
 flash.wdl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/flash.wdl b/flash.wdl
index 0cabd06..673da3d 100644
--- a/flash.wdl
+++ b/flash.wdl
@@ -24,7 +24,6 @@ task flash {
     Boolean? compress = true
     Int? threads = 1
     Int? memory = 4
-    Int? cores = 1
 
     command {
         set -e -o pipefail
@@ -50,7 +49,7 @@ task flash {
     }
 
     runtime {
-        cpu: select_first([cores])
+        cpu: select_first([threads])
         memory: select_first([memory])
     }
 
-- 
GitLab