Skip to content

Commit f20e5dc

Browse files
authored
Increase rename files task disk space (#98)
* Increase rename files task disk space * Fix submit WDL for production. (#97) * Increase rename files task disk space * Fix submit WDL for production. * Update pipeline-tools version
1 parent ab0fc68 commit f20e5dc

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
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.38.0"
130+
String pipeline_tools_version = "v0.39.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
@@ -62,14 +62,15 @@ task RenameFiles {
6262
>>>
6363
runtime {
6464
docker: "quay.io/humancellatlas/secondary-analysis-pipeline-tools:" + pipeline_tools_version
65+
disks: "local-disk 100 HDD"
6566
}
6667
output {
6768
Array[File] outputs = new_file_names
6869
}
6970
}
7071

7172
task InputsForSubmit {
72-
Array[File] fastqs
73+
Array[String] fastqs
7374
Array[Object] other_inputs
7475
Int? expect_cells
7576
String pipeline_tools_version
@@ -150,7 +151,7 @@ workflow Adapter10xCount {
150151
Int max_cromwell_retries = 0
151152
Boolean add_md5s = false
152153

153-
String pipeline_tools_version = "v0.38.0"
154+
String pipeline_tools_version = "v0.39.0"
154155

155156
call GetInputs {
156157
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.38.0"
86+
String pipeline_tools_version = "v0.39.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: "gcr.io/broad-dsde-mint-${runtime_environment}/cromwell-metadata:v1.1.0"
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.1.0"
3333
maxRetries: max_retries
3434
}
3535
output {

0 commit comments

Comments
 (0)