Skip to content

Commit

Permalink
adjust effective_extract_memory_gib sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
rsasch committed Sep 13, 2024
1 parent ec6d19e commit f042176
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/variantstore/wdl/GvsExtractCallsetPgen.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ workflow GvsExtractCallsetPgen {
else 200])

Int effective_extract_memory_gib = if defined(extract_memory_override_gib) then select_first([extract_memory_override_gib])
else if effective_scatter_count <= 100 then 37 + extract_overhead_memory_override_gib
else if effective_scatter_count <= 500 then 17 + extract_overhead_memory_override_gib
else 9 + extract_overhead_memory_override_gib
else if effective_scatter_count <= 100 then 35 + extract_overhead_memory_override_gib
else if effective_scatter_count <= 500 then 15 + extract_overhead_memory_override_gib
else 5 + extract_overhead_memory_override_gib
# WDL 1.0 trick to set a variable ('none') to be undefined.
if (false) {
File? none = ""
Expand Down

0 comments on commit f042176

Please sign in to comment.