Skip to content

Commit

Permalink
de novo assembly & scaffold mem default 31 -> 63 GB (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc authored Apr 17, 2023
1 parent 8646865 commit 53b9a32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipes/WDL/tasks/tasks_assembly.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ task assemble {

runtime {
docker: docker
memory: select_first([machine_mem_gb, 15]) + " GB"
memory: select_first([machine_mem_gb, 63]) + " GB"
cpu: 4
disks: "local-disk " + disk_size + " LOCAL"
disk: disk_size + " GB" # TES
Expand Down Expand Up @@ -151,7 +151,7 @@ task scaffold {

runtime {
docker: docker
memory: select_first([machine_mem_gb, 31]) + " GB"
memory: select_first([machine_mem_gb, 63]) + " GB"
cpu: 4
disks: "local-disk " + disk_size + " LOCAL"
disk: disk_size + " GB" # TES
Expand Down

0 comments on commit 53b9a32

Please sign in to comment.