36
36
from tsinfer import formats
37
37
38
38
39
- def ts_to_dataset (ts , chunks = None , samples = None ):
39
+ def ts_to_dataset (ts , chunks = None , samples = None , contigs = None ):
40
40
"""
41
41
# From https://github.com/sgkit-dev/sgkit/blob/main/sgkit/tests/test_popgen.py#L63
42
42
Convert the specified tskit tree sequence into an sgkit dataset.
@@ -61,7 +61,7 @@ def ts_to_dataset(ts, chunks=None, samples=None):
61
61
genotypes = np .expand_dims (genotypes , axis = 2 )
62
62
63
63
ds = sgkit .create_genotype_call_dataset (
64
- variant_contig_names = ["1" ],
64
+ variant_contig_names = ["1" ] if contigs is None else contigs ,
65
65
variant_contig = np .zeros (len (tables .sites ), dtype = int ),
66
66
variant_position = tables .sites .position .astype (int ),
67
67
variant_allele = alleles ,
@@ -287,6 +287,78 @@ def test_simulate_genotype_call_dataset(tmp_path):
287
287
assert np .all (v .genotypes == sd_v )
288
288
289
289
290
+ class TestMultiContig :
291
+ def make_two_ts_dataset (self , path ):
292
+ # split ts into 2; put them as different contigs in the same dataset
293
+ ts = msprime .sim_ancestry (4 , sequence_length = 1000 , random_seed = 123 )
294
+ ts = msprime .sim_mutations (ts , rate = 2e-3 , random_seed = 123 )
295
+ split_at_site = 7
296
+ assert ts .num_sites > 10
297
+ site_break = ts .site (split_at_site ).position
298
+ ts1 = ts .keep_intervals ([(0 , site_break )]).rtrim ()
299
+ ts2 = ts .keep_intervals ([(site_break , ts .sequence_length )]).ltrim ()
300
+ ds = ts_to_dataset (ts , contigs = ["chr1" , "chr2" ])
301
+ ds .update ({"variant_ancestral_allele" : ds ["variant_allele" ][:, 0 ]})
302
+ variant_contig = ds ["variant_contig" ][:]
303
+ variant_contig [split_at_site :] = 1
304
+ ds .update ({"variant_contig" : variant_contig })
305
+ variant_position = ds ["variant_position" ].values
306
+ variant_position [split_at_site :] -= int (site_break )
307
+ ds .update ({"variant_position" : ds ["variant_position" ]})
308
+ ds .update (
309
+ {"contig_length" : np .array ([ts1 .sequence_length , ts2 .sequence_length ])}
310
+ )
311
+ ds .to_zarr (path , mode = "w" )
312
+ return ts1 , ts2
313
+
314
+ def test_unmasked (self , tmp_path ):
315
+ self .make_two_ts_dataset (tmp_path )
316
+ with pytest .raises (ValueError , match = r'multiple contigs \("chr1", "chr2"\)' ):
317
+ tsinfer .VariantData (tmp_path , "variant_ancestral_allele" )
318
+
319
+ def test_mask (self , tmp_path ):
320
+ ts1 , ts2 = self .make_two_ts_dataset (tmp_path )
321
+ vdata = tsinfer .VariantData (
322
+ tmp_path ,
323
+ "variant_ancestral_allele" ,
324
+ site_mask = np .array (ts1 .num_sites * [True ] + ts2 .num_sites * [False ]),
325
+ )
326
+ assert np .all (ts2 .sites_position == vdata .sites_position )
327
+ assert vdata .contig_id == "chr2"
328
+
329
+ @pytest .mark .parametrize ("contig_id" , ["chr1" , "chr2" ])
330
+ def test_contig_id_param (self , contig_id , tmp_path ):
331
+ tree_seqs = {}
332
+ tree_seqs ["chr1" ], tree_seqs ["chr2" ] = self .make_two_ts_dataset (tmp_path )
333
+ vdata = tsinfer .VariantData (
334
+ tmp_path , "variant_ancestral_allele" , contig_id = contig_id
335
+ )
336
+ assert np .all (tree_seqs [contig_id ].sites_position == vdata .sites_position )
337
+ assert vdata .contig_id == contig_id
338
+
339
+ def test_contig_id_param_and_mask (self , tmp_path ):
340
+ ts1 , ts2 = self .make_two_ts_dataset (tmp_path )
341
+ vdata = tsinfer .VariantData (
342
+ tmp_path ,
343
+ "variant_ancestral_allele" ,
344
+ site_mask = np .array (
345
+ (ts1 .num_sites + 1 ) * [True ] + (ts2 .num_sites - 1 ) * [False ]
346
+ ),
347
+ contig_id = "chr2" ,
348
+ )
349
+ assert np .all (ts2 .sites_position [1 :] == vdata .sites_position )
350
+ assert vdata .contig_id == "chr2"
351
+
352
+ @pytest .mark .parametrize ("contig_id" , ["chr1" , "chr2" ])
353
+ def test_contig_length (self , contig_id , tmp_path ):
354
+ tree_seqs = {}
355
+ tree_seqs ["chr1" ], tree_seqs ["chr2" ] = self .make_two_ts_dataset (tmp_path )
356
+ vdata = tsinfer .VariantData (
357
+ tmp_path , "variant_ancestral_allele" , contig_id = contig_id
358
+ )
359
+ assert vdata .sequence_length == tree_seqs [contig_id ].sequence_length
360
+
361
+
290
362
@pytest .mark .skipif (sys .platform == "win32" , reason = "File permission errors on Windows" )
291
363
class TestSgkitMask :
292
364
@pytest .mark .parametrize ("sites" , [[1 , 2 , 3 , 5 , 9 , 27 ], [0 ], []])
@@ -747,3 +819,42 @@ def test_unimplemented_from_tree_sequence(self):
747
819
# Requires e.g. https://github.com/tskit-dev/tsinfer/issues/924
748
820
with pytest .raises (NotImplementedError ):
749
821
tsinfer .VariantData .from_tree_sequence (None )
822
+
823
+ def test_multiple_contigs (self , tmp_path ):
824
+ path = tmp_path / "data.zarr"
825
+ ds = sgkit .simulate_genotype_call_dataset (n_variant = 3 , n_sample = 3 , phased = True )
826
+ ds ["contig_id" ] = (
827
+ ds ["contig_id" ].dims ,
828
+ np .array (["c10" , "c11" ], dtype = "<U3" ),
829
+ )
830
+ ds ["variant_contig" ] = (
831
+ ds ["variant_contig" ].dims ,
832
+ np .array ([0 , 0 , 1 ], dtype = ds ["variant_contig" ].dtype ),
833
+ )
834
+ sgkit .save_dataset (ds , path )
835
+ with pytest .raises (
836
+ ValueError , match = r'Sites belong to multiple contigs \("c10", "c11"\)'
837
+ ):
838
+ tsinfer .VariantData (path , ds ["variant_allele" ][:, 0 ].astype (str ))
839
+
840
+ def test_bad_contig_param (self , tmp_path ):
841
+ path = tmp_path / "data.zarr"
842
+ ds = sgkit .simulate_genotype_call_dataset (n_variant = 3 , n_sample = 3 , phased = True )
843
+ sgkit .save_dataset (ds , path )
844
+ with pytest .raises (ValueError , match = '"XX" not found' ):
845
+ tsinfer .VariantData (
846
+ path , ds ["variant_allele" ][:, 0 ].astype (str ), contig_id = "XX"
847
+ )
848
+
849
+ def test_multiple_contig_param (self , tmp_path ):
850
+ path = tmp_path / "data.zarr"
851
+ ds = sgkit .simulate_genotype_call_dataset (n_variant = 3 , n_sample = 3 , phased = True )
852
+ ds ["contig_id" ] = (
853
+ ds ["contig_id" ].dims ,
854
+ np .array (["chr1" , "chr1" ], dtype = "<U4" ),
855
+ )
856
+ sgkit .save_dataset (ds , path )
857
+ with pytest .raises (ValueError , match = 'Multiple contigs named "chr1"' ):
858
+ tsinfer .VariantData (
859
+ path , ds ["variant_allele" ][:, 0 ].astype (str ), contig_id = "chr1"
860
+ )
0 commit comments