Skip to content

Commit 19c71ea

Browse files
committed
updated fixit felix with pipefail
1 parent 6690cf9 commit 19c71ea

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

all_of_us/cmrg/FixItFelixAndVariantCall.changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# aou_9.0.1
2+
2026-01-29 (Date of Last Commit)
3+
* Added set e with pipefail to FixItFelix
4+
15
# aou_9.0.0
26
2025-08-11 (Date of Last Commit)
37

all_of_us/cmrg/FixItFelixAndVariantCall.wdl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ workflow FixItFelixAndVariantCall {
2626
}
2727

2828
Int original_cram_size = ceil(size(cram_file, "GB"))
29-
String pipeline_version = "aou_9.0.0"
29+
String pipeline_version = "aou_9.0.1"
3030

3131
call subset_cram {
3232
input:
@@ -106,6 +106,7 @@ task subset_cram {
106106
String output_index = sample_name + ".bai"
107107

108108
command {
109+
set -euo pipefail
109110
~{gatk_path} --java-options "-Xmx2G" \
110111
PrintReads \
111112
-R ~{ref_fasta} \
@@ -148,6 +149,7 @@ task FixItFelix {
148149
}
149150

150151
command <<<
152+
set -euo pipefail
151153
bam=~{reads}
152154
bed=~{intervals}
153155
ref=~{masked_ref_fasta}
@@ -250,6 +252,7 @@ task call_variants {
250252
String output_filename = output_name + (if generate_gvcf then ".g.vcf.gz" else ".vcf.gz")
251253

252254
command <<<
255+
set -euo pipefail
253256
~{gatk_path} --java-options "-Xmx3G" \
254257
HaplotypeCaller \
255258
-R ~{ref_fasta} \

0 commit comments

Comments
 (0)