Skip to content

Commit

Permalink
debugging comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gbggrant committed Jan 30, 2025
1 parent 7929086 commit bb95780
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/variantstore/wdl/GvsUtils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ task GetToolVersions {
# GVS generally uses the smallest `alpine` version of the Google Cloud SDK as it suffices for most tasks, but
# there are a handlful of tasks that require the larger GNU libc-based `slim`.
String cloud_sdk_slim_docker = "gcr.io/google.com/cloudsdktool/cloud-sdk:435.0.0-slim"
String variants_docker = "us-central1-docker.pkg.dev/broad-dsde-methods/gvs/variants:2025-01-27-alpine-46895d996b6b"
String variants_docker = "us-central1-docker.pkg.dev/broad-dsde-methods/gvs/variants:2025-01-30-alpine-a29a91e48317"
String variants_nirvana_docker = "us.gcr.io/broad-dsde-methods/variantstore:nirvana_2022_10_19"
String gatk_docker = "us-central1-docker.pkg.dev/broad-dsde-methods/gvs/gatk:2024-11-28-gatkbase-b71132a18899"
String real_time_genomics_docker = "docker.io/realtimegenomics/rtg-tools:latest"
Expand Down
6 changes: 3 additions & 3 deletions scripts/variantstore/wdl/test/GvsQuickstartVATIntegration.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,14 @@ task AssertIdenticalOutputs {
PS4='\D{+%F %T} \w $ '
set -o errexit -o nounset -o pipefail -o xtrace

cat ~{actual_file} | gunzip > actual_file.txt
cat ~{expected_file} | gunzip > expected_file.txt
cat ~{actual_file} | gunzip | sort > actual_file.txt
cat ~{expected_file} | gunzip | sort > expected_file.txt
set +o errexit
cmp actual_file.txt expected_file.txt
rc=$?
set -o errexit
if [[ $rc -ne 0 ]]; then
echo "The observed file ~{actual_file} differs from the expected ~{expected_file} in wc output!"
echo "The observed file ~{actual_file} differs from the expected ~{expected_file}!"
exit 1;
fi
>>>
Expand Down

0 comments on commit bb95780

Please sign in to comment.