Skip to content

Commit 231a2e8

Browse files
author
David Shiga
authored
Wire up max_cromwell_retries to submit wdl in cellranger adapter wdl. Also fix stub submit wdl missing parameter and fix max_retries to make it optional. (#92)
1 parent a79f70c commit 231a2e8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

adapter_pipelines/Optimus/adapter.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ workflow AdapterOptimus {
127127
Int max_cromwell_retries = 0
128128
Boolean add_md5s = false
129129

130-
String pipeline_tools_version = "v0.35.0"
130+
String pipeline_tools_version = "v0.36.0"
131131

132132
call GetInputs as prep {
133133
input:

adapter_pipelines/cellranger/adapter.wdl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ workflow Adapter10xCount {
175175
Int max_cromwell_retries = 0
176176
Boolean add_md5s = false
177177

178-
String pipeline_tools_version = "v0.35.0"
178+
String pipeline_tools_version = "v0.36.0"
179179

180180
call GetInputs {
181181
input:
@@ -290,6 +290,7 @@ workflow Adapter10xCount {
290290
pipeline_tools_version = pipeline_tools_version,
291291
add_md5s = add_md5s,
292292
pipeline_version = analysis.pipeline_version,
293+
max_retries = max_cromwell_retries,
293294
# The sorted bam is the largest output. Other outputs will increase space by ~50%.
294295
# Factor of 2 and addition of 50 GB gives some buffer.
295296
disk_space = ceil(size(analysis.sorted_bam, "GB") * 2 + 50)

adapter_pipelines/ss2_single_sample/adapter.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ workflow AdapterSmartSeq2SingleCell{
8383
Int max_cromwell_retries = 0
8484
Boolean add_md5s = false
8585

86-
String pipeline_tools_version = "v0.35.0"
86+
String pipeline_tools_version = "v0.36.0"
8787

8888
call GetInputs as prep {
8989
input:

adapter_pipelines/submit_stub/submit.wdl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ workflow submit {
3232
Boolean record_http = false
3333
String pipeline_tools_version
3434
Boolean add_md5s
35-
Int max_retries
35+
Int max_retries = 0
3636
# Version of the pipeline, should be included in the pipeline file
3737
String pipeline_version
38+
# Disk space to allocate for stage_files task
39+
Int disk_space
3840

3941
call submit_stub
4042

0 commit comments

Comments
 (0)