@@ -527,6 +527,7 @@ def test_ancestral_missingness(tmp_path):
527
527
ancestral_allele = ds .variant_ancestral_allele .values
528
528
ancestral_allele [0 ] = "N"
529
529
ancestral_allele [11 ] = "-"
530
+ ancestral_allele [12 ] = "💩"
530
531
ancestral_allele [15 ] = "💩"
531
532
ds = ds .drop_vars (["variant_ancestral_allele" ])
532
533
sgkit .save_dataset (ds , str (zarr_path ) + ".tmp" )
@@ -538,19 +539,16 @@ def test_ancestral_missingness(tmp_path):
538
539
)
539
540
ds = sgkit .load_dataset (str (zarr_path ) + ".tmp" )
540
541
sd = tsinfer .SgkitSampleData (str (zarr_path ) + ".tmp" )
541
- with pytest .warns (UserWarning , match = "The following alleles were not found" ):
542
+ with pytest .warns (
543
+ UserWarning ,
544
+ match = r"not found in the variant_allele array for the 4 [\s\S]*'💩': 2" ,
545
+ ):
542
546
inf_ts = tsinfer .infer (sd )
543
- for i , (
544
- inf_var ,
545
- var ,
546
- ) in enumerate (zip (inf_ts .variants (), ts .variants ())):
547
- assert inf_var .site .ancestral_state == var .site .ancestral_state or i in [
548
- 0 ,
549
- 11 ,
550
- 15 ,
551
- ]
552
- if i in [0 , 11 , 15 ]:
547
+ for i , (inf_var , var ) in enumerate (zip (inf_ts .variants (), ts .variants ())):
548
+ if i in [0 , 11 , 12 , 15 ]:
553
549
assert inf_var .site .metadata == {"inference_type" : "parsimony" }
550
+ else :
551
+ assert inf_var .site .ancestral_state == var .site .ancestral_state
554
552
555
553
556
554
@pytest .mark .skipif (sys .platform == "win32" , reason = "File permission errors on Windows" )
0 commit comments