tskit icon indicating copy to clipboard operation
tskit copied to clipboard

Population-scale genomics

Results 291 tskit issues
Sort by recently updated
recently updated
newest added

For instance, if we'd like to transform coordinates to be in genetic map units; as discussed with @lkirk @apragsdale @jeromekelleher .

## Description It appears as if `union` wasn't really the right underlying function to use for `concatenate`, e.g. it doesn't deal as expected with sites above samples, so I had...

As discovered in #3168, `union` is a node-wise union (not edge-wise) and so is not functioning how we imagined it was in implementing `concatenate`. For instance, the following fails: ```...

bug

As discussed in #3168, something we'd like to do is squash together tree sequences describing different bits of the genome. For instance: say I've got simulations of 3L and 3R...

Mention how we use the issue tracker moving forward on the front page.

With the ability to switch from dark to light mode, we need the SVGs to work both ways too. The shaded background in a tree seq viz is easy: we...

enhancement
Python API
Visualisation

For instance: ``` >>> ts = msprime.simulate(10) >>> ts.tables.metadata = b'abc' >>> ts.tables.metadata b'' >>> ts.tables.metadata_schema >>> basic_schema = tskit.MetadataSchema({'codec': 'json'}) >>> ts.tables.metadata_schema = basic_schema >>> ts.tables.metadata_schema ``` These are...

bug
Python API

We currently have a mishmash of different ways of running tests on a range of different topologies. I think a good pattern will be to use pytest.mark.parametrize with a selection...

Python API
Infrastructure and tools
refactoring

I get strange results when trying to calculate the AFS for the following dataset: ```cpp // Same as the example from the PLOS paper but with back and recurring mutations...