Skip to content

Commit

Permalink
increase tsv_join mem 7->15 GB (#406)
Browse files Browse the repository at this point in the history
* increase tsv_join machine_mem_gb to 30GB in two nextstrain workflows; increase core count 2->4
  • Loading branch information
tomkinsc authored Feb 8, 2022
1 parent 88243d6 commit e7bbbb6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pipes/WDL/tasks/tasks_utils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,10 @@ task tsv_join {
runtime {
memory: "~{machine_mem_gb} GB"
cpu: 2
cpu: 4
docker: "quay.io/broadinstitute/viral-core:2.1.33"
disks: "local-disk 100 HDD"
dx_instance_type: "mem1_ssd1_v2_x2"
dx_instance_type: "mem1_ssd1_v2_x4"
maxRetries: 2
}
}
Expand Down
2 changes: 1 addition & 1 deletion pipes/WDL/workflows/sarscov2_nextstrain.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ workflow sarscov2_nextstrain {
input_tsvs = sample_metadata_tsvs,
id_col = 'strain',
out_basename = "metadata-merged",
machine_mem_gb = 16
machine_mem_gb = 30
}
}
call nextstrain.derived_cols {
Expand Down
2 changes: 1 addition & 1 deletion pipes/WDL/workflows/sarscov2_nextstrain_aligned_input.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ workflow sarscov2_nextstrain_aligned_input {
input_tsvs = sample_metadata_tsvs,
id_col = 'strain',
out_basename = "metadata-merged",
machine_mem_gb = 16
machine_mem_gb = 30
}
}
call nextstrain.derived_cols {
Expand Down

0 comments on commit e7bbbb6

Please sign in to comment.