We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33fbd38 commit 5313f2aCopy full SHA for 5313f2a
wdl/tasks/VariantCalling/DeepVariant.wdl
@@ -63,8 +63,9 @@ workflow Run {
63
Boolean is_t2t_shard8 = length(how_to_shard_wg_for_calling) < 20 && shard_id == "9_15"
64
Boolean is_38_chr1 = length(how_to_shard_wg_for_calling) > 20 && shard_id == "1-p"
65
Boolean is_38_shard3 = length(how_to_shard_wg_for_calling) > 20 && shard_id == "11-q_17-q"
66
+ Boolean is_38_1q_17p = length(how_to_shard_wg_for_calling) > 20 && shard_id == "1-q_17-p"
67
- Boolean pay_toll = true # is_t2t_chrX || is_38_chr1 || is_t2t_shard8 || is_38_shard3
68
+ Boolean pay_toll = is_t2t_chrX || is_38_chr1 || is_t2t_shard8 || is_38_shard3 || is_38_1q_17p # true #
69
Int use_this_memory = if (pay_toll) then 6*dv_threads else dv_memory
70
call DV as DeepV {
71
input:
0 commit comments