Skip to content

Commit effad5c

Browse files
authored
Fix to HRP2/3 deletion detection for GCP batch backend. (#503)
* Updated HRP2/3 workflow to fix Batch backend issues. - Now uses `File` for the bam file input.
1 parent eb3e2ff commit effad5c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

wdl/pipelines/TechAgnostic/TertiaryAnalysis/PfalciparumHrp2Hrp3Status.wdl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ workflow PfalciparumHrp2Hrp3Status {
4545

4646
task IsLocusDeleted {
4747
input {
48-
String bam
48+
File bam
4949
File bai
5050

5151
String chr
@@ -60,7 +60,6 @@ task IsLocusDeleted {
6060
command <<<
6161
set -euxo pipefail
6262
63-
export GCS_OAUTH_TOKEN=$(gcloud auth application-default print-access-token)
6463
samtools view -bhX ~{bam} ~{bai} ~{chr} > chr.bam
6564
samtools index chr.bam
6665

0 commit comments

Comments
 (0)