Skip to content

Commit

Permalink
increase disk space needed calc for bqsr-gatherbams step
Browse files Browse the repository at this point in the history
  • Loading branch information
malachig committed Oct 9, 2024
1 parent 7621601 commit 0ae70ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion definitions/tools/bqsr.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ task GatherBamFiles {
Int preemptible_tries
}
Int command_mem_gb = ceil(mem_size_gb) - 1
Int space_needed_gb = 10 + round(bam_size * 2.5)
Int space_needed_gb = 10 + round(bam_size * 3.5)
runtime {
maxRetries: 2
preemptible: preemptible_tries
Expand Down

0 comments on commit 0ae70ce

Please sign in to comment.