Skip to content

Commit d463cf0

Browse files
Fix uncovered validation bug
1 parent aff896e commit d463cf0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bio2zarr/vcf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,6 +1362,7 @@ def assert_format_val_equal(vcf_val, zarr_val, vcf_type):
13621362
assert vcf_val.shape == zarr_val.shape
13631363
if vcf_type == "Integer":
13641364
vcf_val[vcf_val == VCF_INT_MISSING] = INT_MISSING
1365+
vcf_val[vcf_val == VCF_INT_FILL] = INT_FILL
13651366
elif vcf_type == "Float":
13661367
nt.assert_equal(vcf_val.view(np.int32), zarr_val.view(np.int32))
13671368

0 commit comments

Comments
 (0)