Skip to content

Commit caaa54f

Browse files
authored
Fix VCF integration assertion, revert extract scatters [VS-1820] (#9340)
1 parent 8861549 commit caaa54f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.dockstore.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ workflows:
343343
branches:
344344
- master
345345
- ah_var_store
346-
- vs_1777_build_failure
347346
tags:
348347
- /.*/
349348
- name: GvsIngestTieout

scripts/variantstore/wdl/test/GvsQuickstartIntegration.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ workflow GvsQuickstartIntegration {
3838
}
3939

4040
String expected_subdir = if (!chr20_X_Y_only) then "all_chrs/" else ""
41-
File expected_output_prefix = "gs://gvs-internal-quickstart/integration/2025-07-21/" + expected_subdir
41+
File expected_output_prefix = "gs://gvs-internal-quickstart/integration/2026-03-09/" + expected_subdir
4242
File truth_data_prefix = "gs://gvs-internal-quickstart/integration/test_data/2025-07-21/" + expected_subdir
4343

4444
# WDL 1.0 trick to set a variable ('none') to be undefined.

scripts/variantstore/wdl/test/GvsQuickstartVcfIntegration.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ task AssertCostIsTrackedAndExpected {
444444
DIFF_FOUND=$(echo $EXP_BYTES $OBS_BYTES | awk '{print ($1-$2)/$1}')
445445
fi
446446
447-
if ! awk "BEGIN{ exit ($DIFF_FOUND -gt $TOLERANCE) }"
447+
if ! awk "BEGIN{ exit ($DIFF_FOUND > $TOLERANCE) }"
448448
then
449449
echo "FAIL!!! The relative difference between these is $DIFF_FOUND, which is greater than the allowed tolerance ($TOLERANCE)"
450450
echo "1" > ret_val.txt

0 commit comments

Comments
 (0)