Skip to content

Commit ac2ac44

Browse files
authored
Pass max_retries parameter to cellranger workflow (#102)
* Pass max_retries param to cellranger workflow * Update pipeline-tools version tag
1 parent 2c3ad15 commit ac2ac44

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-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.41.0"
130+
String pipeline_tools_version = "v0.42.0"
131131

132132
call GetInputs as prep {
133133
input:

adapter_pipelines/cellranger/adapter.wdl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ workflow Adapter10xCount {
151151
Int max_cromwell_retries = 0
152152
Boolean add_md5s = false
153153

154-
String pipeline_tools_version = "v0.41.0"
154+
String pipeline_tools_version = "v0.42.0"
155155

156156
call GetInputs {
157157
input:
@@ -183,7 +183,8 @@ workflow Adapter10xCount {
183183
fastqs = rename_fastqs.outputs,
184184
reference_name = reference_name,
185185
transcriptome_tar_gz = transcriptome_tar_gz,
186-
expect_cells = expect_cells
186+
expect_cells = expect_cells,
187+
max_retries = max_cromwell_retries
187188
}
188189
189190
call InputsForSubmit {

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.41.0"
86+
String pipeline_tools_version = "v0.42.0"
8787

8888
call GetInputs as prep {
8989
input:

0 commit comments

Comments
 (0)