Skip to content

Commit

Permalink
expose ram as knob
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Sep 22, 2023
1 parent 59ad5d5 commit 3f8c374
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pipes/WDL/tasks/tasks_interhost.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ task subsample_by_cases {
String? end_date
String docker = "quay.io/broadinstitute/subsampler"
Int machine_mem_gb = 30
}
command <<<
set -e -o pipefail
Expand Down Expand Up @@ -119,7 +120,7 @@ task subsample_by_cases {
>>>
runtime {
docker: docker
memory: "30 GB"
memory: machine_mem_gb + " GB"
cpu: 2
disks: "local-disk 200 HDD"
disk: "200 GB"
Expand Down

0 comments on commit 3f8c374

Please sign in to comment.