Skip to content

Commit

Permalink
Hotfix for BackupWorkspace.wdl and minor change to the hrp2/`hrp3…
Browse files Browse the repository at this point in the history
…` detection wdl. (#464)

* Added `volatile: true` to `BackupWorkspace.wdl task.

* Increased disk space for `PfalciparumHrp2Hrp3Status.wdl`

* Fixed disk size to depend on all inputs for `PfalciparumHrp2Hrp3Status.wdl`
  • Loading branch information
jonn-smith authored Aug 9, 2024
1 parent ca83c19 commit aab3d7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ task IsLocusDeleted {
RuntimeAttr? runtime_attr_override
}
Int disk_size = 1 + ceil(size(bam, "GB"))
Int disk_size = 1 + 2*ceil(size(bam, "GB")) + 2*ceil(size(bai, "GB"))
command <<<
set -euxo pipefail
Expand Down
1 change: 1 addition & 0 deletions wdl/pipelines/TechAgnostic/Utility/BackupWorkspace.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ task RunBackupWithPython {

meta {
description: "Backup the workspace with the given info."
volatile: true
}
parameter_meta {
namespace: "Namespace to which the workspace belongs."
Expand Down

0 comments on commit aab3d7a

Please sign in to comment.