Skip to content

Commit 2c3ad15

Browse files
authored
Fix a typo that prevents production workflows from submissions. (#101)
* Fix a typo that prevents production workflows from submissions. * Pre-release changes.
1 parent def4863 commit 2c3ad15

File tree

4 files changed

+4
-4
lines changed

4 files changed

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

132132
call GetInputs as prep {
133133
input:

adapter_pipelines/cellranger/adapter.wdl

Lines changed: 1 addition & 1 deletion
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.40.0"
154+
String pipeline_tools_version = "v0.41.0"
155155

156156
call GetInputs {
157157
input:

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

8888
call GetInputs as prep {
8989
input:

adapter_pipelines/submit.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ task get_metadata {
2929
--use_caas ${use_caas}
3030
>>>
3131
runtime {
32-
docker: (if runtime_environment == "production" then "gcr.io/hca-dcp-pipelines-prod/cromwell-metadata:" else "gcr.io/broad-dsde-mint-${runtime_environment}/cromwell-metadata:") + "v1.2.0"
32+
docker: (if runtime_environment == "prod" then "gcr.io/hca-dcp-pipelines-prod/cromwell-metadata:" else "gcr.io/broad-dsde-mint-${runtime_environment}/cromwell-metadata:") + "v1.2.0"
3333
maxRetries: max_retries
3434
}
3535
output {

0 commit comments

Comments
 (0)