Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tasks/wdl/ImputationBeagleTasks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ task Phase {
Int start
Int end

String beagle_docker = "us.gcr.io/broad-gotc-prod/imputation-beagle:1.1.0-17Dec24.224-1758207261"
String beagle_docker = "us.gcr.io/broad-dsde-methods/sshah/beagle_jar_test:d820c4e_version_1"
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
Int memory_mb = 32000 # value depends on chunk size, the number of samples in ref and target panel
Int disk_size_gb = ceil((3 * size(dataset_vcf, "GiB")) + size(ref_panel_bref3, "GiB")) + 10
Expand All @@ -319,7 +319,7 @@ task Phase {
set -e -o pipefail

java -ea -XX:MaxRAMPercentage=90.0 -XX:MinRAMPercentage=90.0 -XX:-UseCompressedOops \
-jar /usr/gitc/beagle.17Dec24.224.jar \
-jar /usr/gitc/beagle.d820c4e.jar \
gt=~{dataset_vcf} \
ref=~{ref_panel_bref3} \
map=~{genetic_map_file} \
Expand Down Expand Up @@ -356,7 +356,7 @@ task Impute {
Int end
Boolean impute_with_allele_probabilities

String beagle_docker = "us.gcr.io/broad-gotc-prod/imputation-beagle:1.1.0-17Dec24.224-1758207261"
String beagle_docker = "us.gcr.io/broad-dsde-methods/sshah/beagle_jar_test:d820c4e_version_1"
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
Int memory_mb = 32000 # value depends on chunk size, the number of samples in ref and target panel
Int disk_size_gb = ceil((3 * size(dataset_vcf, "GiB")) + size(ref_panel_bref3, "GiB")) + 10
Expand All @@ -366,7 +366,7 @@ task Impute {
set -e -o pipefail

java -ea -XX:MaxRAMPercentage=90.0 -XX:MinRAMPercentage=90.0 -XX:-UseCompressedOops \
-jar /usr/gitc/beagle.17Dec24.224.jar \
-jar /usr/gitc/beagle.d820c4e.jar \
gt=~{dataset_vcf} \
ref=~{ref_panel_bref3} \
map=~{genetic_map_file} \
Expand Down
Loading