Skip to content

Commit c35a85a

Browse files
jessicawayactions-usernikellepetrillo
authored
replace azure capability with aws capability for reblock (#1752)
* replace azure capability with aws capability for reblock * Updated pipeline_versions.txt with all pipeline version information * Updated pipeline_versions.txt with all pipeline version information * Update changelog for version 2.4.4 Updated the date of the last commit and replaced Azure docker with AWS docker. * Updated pipeline_versions.txt with all pipeline version information * update changelog * Updated pipeline_versions.txt with all pipeline version information * update version * Updated pipeline_versions.txt with all pipeline version information * revert version * Updated pipeline_versions.txt with all pipeline version information * update UltimaGenomicsWholeGenomeGermline.changelog.md * Updated pipeline_versions.txt with all pipeline version information * dummy commit to restart tests --------- Co-authored-by: GitHub Action <action@github.com> Co-authored-by: npetrill <npetrill@broadinstitute.org>
1 parent 8cfb509 commit c35a85a

4 files changed

Lines changed: 13 additions & 11 deletions

File tree

pipeline_versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ PairedTag 2.1.10 2026-01-22
1515
PeakCalling 1.0.1 2025-08-11
1616
Pipeline Name Version Date of Last Commit
1717
RNAWithUMIsPipeline 1.0.20 2026-01-21
18-
ReblockGVCF 2.4.4 2026-01-21
18+
ReblockGVCF 2.4.4 2026-01-29
1919
SlideSeq 3.6.4 2026-01-22
2020
SlideTags 1.0.7 2026-01-26
2121
UltimaGenomicsJointGenotyping 1.2.3 2025-08-11
2222
UltimaGenomicsWholeGenomeCramOnly 1.1.3 2026-01-21
23-
UltimaGenomicsWholeGenomeGermline 1.2.2 2026-01-21
23+
UltimaGenomicsWholeGenomeGermline 1.2.2 2026-01-29
2424
VariantCalling 2.2.8 2026-01-21
2525
WholeGenomeGermlineSingleSample 3.3.7 2026-01-21
2626
WholeGenomeReprocessing 3.3.7 2026-01-21

pipelines/wdl/dna_seq/germline/joint_genotyping/reblocking/ReblockGVCF.changelog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# 2.4.4
2-
2026-01-21 (Date of Last Commit)
2+
2026-01-29 (Date of Last Commit)
33

44
* Moved inputs into new Google buckets. This change does not affect the outputs of the pipeline
5+
* Replace Azure docker with AWS docker
56

67
# 2.4.3
78
2025-10-09 (Date of Last Commit)
@@ -170,4 +171,4 @@ Tool, task, and workflow now require a reference.
170171
* Added 'allowNestedInputs: true' metadata parameter to wdl to support Cromwell version 48 and above
171172

172173
# 1.0
173-
Initial release of the ReblockGVCF pipeline. This is a WDL 1.0 version of the [workflow run in Terra](https://portal.firecloud.org/?return=terra#methods/methodsDev/ReblockGVCF-gatk4_exomes_goodCompression/4) for joint-genotyping projects.
174+
Initial release of the ReblockGVCF pipeline. This is a WDL 1.0 version of the [workflow run in Terra](https://portal.firecloud.org/?return=terra#methods/methodsDev/ReblockGVCF-gatk4_exomes_goodCompression/4) for joint-genotyping projects.

pipelines/wdl/dna_seq/germline/joint_genotyping/reblocking/ReblockGVCF.wdl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ workflow ReblockGVCF {
2626
String gvcf_basename = basename(gvcf, gvcf_file_extension)
2727
# docker images
2828
String gatk_docker_gcp = "us.gcr.io/broad-gatk/gatk:4.6.1.0"
29-
String gatk_docker_azure = "terrapublic.azurecr.io/gatk:4.6.1.0"
30-
String gatk_docker = if cloud_provider == "gcp" then gatk_docker_gcp else gatk_docker_azure
29+
String gatk_docker_aws = "broadinstitute/gatk:4.6.1.0"
30+
String gatk_docker = if cloud_provider == "gcp" then gatk_docker_gcp else gatk_docker_aws
3131

32-
# make sure either gcp or azr is supplied as cloud_provider input
33-
if ((cloud_provider != "gcp") && (cloud_provider != "azure")) {
32+
# make sure either gcp or aws is supplied as cloud_provider input
33+
if ((cloud_provider != "gcp") && (cloud_provider != "aws")) {
3434
call utils.ErrorWithMessage as ErrorMessageIncorrectInput {
3535
input:
36-
message = "cloud_provider must be supplied with either 'gcp' or 'azure'."
36+
message = "cloud_provider must be supplied with either 'gcp' or 'aws'."
3737
}
3838
}
3939
@@ -72,6 +72,7 @@ workflow ReblockGVCF {
7272
File reblocked_gvcf = Reblock.output_vcf
7373
File reblocked_gvcf_index = Reblock.output_vcf_index
7474
}
75+
7576
meta {
7677
allowNestedInputs: true
7778
}

pipelines/wdl/dna_seq/germline/single_sample/ugwgs/UltimaGenomicsWholeGenomeGermline.changelog.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# 1.2.2
2-
2026-01-21 (Date of Last Commit)
2+
2026-01-29 (Date of Last Commit)
33

44
* Moved inputs into new Google buckets. This change does not affect the outputs of the pipeline
5-
5+
* Updated the ReblockGVCF.wdl to be compatible with AWS. This changes does not affect the outputs of the pipeline
66
# 1.2.1
77
2025-10-09 (Date of Last Commit)
88

0 commit comments

Comments
 (0)