Skip to content

Commit facc303

Browse files
committed
wrong sign
1 parent f2a84f6 commit facc303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v03_pipeline/lib/tasks/validate_callset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def update_table(self, mt: hl.MatrixTable) -> hl.MatrixTable:
107107
# alleles. gVCFs may contain GQ or AD at sites without actual variant
108108
# calls.
109109
mt = mt.filter_rows(
110-
mt.alleles[1] == '<NON_REF>',
110+
mt.alleles[1] != '<NON_REF>',
111111
)
112112

113113
if not self.skip_validation and self.dataset_type.can_run_validation:

0 commit comments

Comments
 (0)