File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
262025-08-11 (Date of Last Commit)
37
Original file line number Diff line number Diff 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 } \
You can’t perform that action at this time.
0 commit comments