Skip to content

Commit

Permalink
Fix disk sizing error
Browse files Browse the repository at this point in the history
  • Loading branch information
gbggrant committed Jan 30, 2025
1 parent 26fc0f0 commit 53385a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ task AssertIdenticalOutputs {
String gatk_docker
}

Int disk_size_gb = ceil(10 * size(actual_file, "GiB") + 10 * size(expected_file)) + 200
Int disk_size_gb = ceil(10 * size(actual_file, "GiB") + 10 * size(expected_file, "GiB")) + 200

command <<<
# Prepend date, time and pwd to xtrace log entries.
Expand Down

0 comments on commit 53385a7

Please sign in to comment.