From 0211661c3d7dc4cc95213ed3c2a5640cfcc38ae2 Mon Sep 17 00:00:00 2001
From: DavyCats <davycats.dc@gmail.com>
Date: Wed, 20 May 2020 15:19:24 +0200
Subject: [PATCH] add missing parameter_meta

---
 chunked-scatter.wdl | 3 ++-
 star.wdl            | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/chunked-scatter.wdl b/chunked-scatter.wdl
index 1b81687..111d8fa 100644
--- a/chunked-scatter.wdl
+++ b/chunked-scatter.wdl
@@ -59,7 +59,8 @@ task ChunkedScatter {
         chunkSize: {description: "Equivalent to chunked-scatter's `-c` option.", category: "advanced"}
         overlap: {description: "Equivalent to chunked-scatter's `-o` option.", category: "advanced"}
         minimumBasesPerFile: {description: "Equivalent to chunked-scatter's `-m` option.", category: "advanced"}
+        timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
         dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
                       category: "advanced"}
     }
-}
\ No newline at end of file
+}
diff --git a/star.wdl b/star.wdl
index 4942f35..8e6a511 100644
--- a/star.wdl
+++ b/star.wdl
@@ -81,6 +81,7 @@ task GenomeGenerate {
 
         threads: {description: "The number of threads to use.", category: "advanced"}
         memory: {description: "The amount of memory this job will use.", category: "advanced"}
+        timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
         dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
                       category: "advanced"}
     }
-- 
GitLab