Skip to content

Commit 8cfb509

Browse files
authored
[TSPS-770] Update Beagle jar to remove trailing zeros from AF and DR2 annotations (#1747)
1 parent 3a8a018 commit 8cfb509

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

pipeline_versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ExomeGermlineSingleSample 3.2.7 2026-01-21
66
ExomeReprocessing 3.3.7 2026-01-21
77
IlluminaGenotypingArray 1.12.27 2026-01-21
88
Imputation 1.1.23 2025-10-03
9-
ImputationBeagle 2.4.2 2025-12-23
9+
ImputationBeagle 2.5.0 2026-01-27
1010
JointGenotyping 1.7.3 2025-08-11
1111
MultiSampleSmartSeq2SingleNucleus 2.2.4 2026-01-21
1212
Multiome 6.1.4 2026-01-22

pipelines/wdl/arrays/imputation_beagle/ImputationBeagle.changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.5.0
2+
2026-01-27 (Date of Last Commit)
3+
4+
* Updates Phase and Impute tasks docker image to remove trailing zeros from AF and DR2 annotations in the output VCF.
5+
16
# 2.4.2
27
2025-12-23 (Date of Last Commit)
38

pipelines/wdl/arrays/imputation_beagle/ImputationBeagle.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "../../../../tasks/wdl/ImputationTasks.wdl" as tasks
55
import "../../../../tasks/wdl/ImputationBeagleTasks.wdl" as beagleTasks
66

77
workflow ImputationBeagle {
8-
String pipeline_version = "2.4.2"
8+
String pipeline_version = "2.5.0"
99
String input_qc_version = "1.2.5"
1010
String quota_consumed_version = "1.1.0"
1111

tasks/wdl/ImputationBeagleTasks.wdl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ task Phase {
307307
Int start
308308
Int end
309309

310-
String beagle_docker = "us.gcr.io/broad-gotc-prod/imputation-beagle:2.0.0-d820c4e-1763720636"
310+
String beagle_docker = "us.gcr.io/broad-gotc-prod/imputation-beagle:3.1.0-0b17ad0-1768971822"
311311
Int cpu = 8 # This parameter is used as the nthreads input to Beagle which is part of how we make it determinstic. Changing this value may change the output generated by the tool
312312
Int memory_mb = 32000 # value depends on chunk size, the number of samples in ref and target panel
313313
Int disk_size_gb = ceil((3 * size(dataset_vcf, "GiB")) + size(ref_panel_bref3, "GiB")) + 10
@@ -319,7 +319,7 @@ task Phase {
319319
set -e -o pipefail
320320
321321
java -ea -XX:MaxRAMPercentage=90.0 -XX:MinRAMPercentage=90.0 -XX:-UseCompressedOops \
322-
-jar /usr/gitc/beagle.d820c4e.jar \
322+
-jar /usr/gitc/beagle.0b17ad0.jar \
323323
gt=~{dataset_vcf} \
324324
ref=~{ref_panel_bref3} \
325325
map=~{genetic_map_file} \
@@ -356,7 +356,7 @@ task Impute {
356356
Int end
357357
Boolean impute_with_allele_probabilities
358358

359-
String beagle_docker = "us.gcr.io/broad-gotc-prod/imputation-beagle:2.0.0-d820c4e-1763720636"
359+
String beagle_docker = "us.gcr.io/broad-gotc-prod/imputation-beagle:3.1.0-0b17ad0-1768971822"
360360
Int cpu = 8 # This parameter is used as the nthreads input to Beagle which is part of how we make it determinstic. Changing this value may change the output generated by the tool
361361
Int memory_mb = 32000 # value depends on chunk size, the number of samples in ref and target panel
362362
Int disk_size_gb = ceil((3 * size(dataset_vcf, "GiB")) + size(ref_panel_bref3, "GiB")) + 10
@@ -366,7 +366,7 @@ task Impute {
366366
set -e -o pipefail
367367
368368
java -ea -XX:MaxRAMPercentage=90.0 -XX:MinRAMPercentage=90.0 -XX:-UseCompressedOops \
369-
-jar /usr/gitc/beagle.d820c4e.jar \
369+
-jar /usr/gitc/beagle.0b17ad0.jar \
370370
gt=~{dataset_vcf} \
371371
ref=~{ref_panel_bref3} \
372372
map=~{genetic_map_file} \

0 commit comments

Comments
 (0)