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

No work has been done on this, there are some easy wins like grouping together calls to `pack` and `unpack` where possible. Maybe after #511

enhancement
Python API
Performance

For 1.0 we should do a quick review of these.

From #3140 "Still, it'd be good to have not just "see here" but maybe a warning that in-place modification wont' work. (Also, those docs don't have the simplest use cases...

We should add in a citation from the docstring of `extend_haplotypes` to the published version of https://www.biorxiv.org/content/10.1101/2024.11.30.626138v2, i.e. when it comes out of preprint. This issue is just a reminder...

Getting this on the current build: ``` /home/benj/projects/tskit/env/lib/python3.12/site-packages/setuptools/dist.py:760: SetuptoolsDeprecationWarning: License classifiers are deprecated. !! ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License ::...

Let's say we have two sets of nodes, `A` and `B`, and let `R` be the `|A| x |B|` matrix that gives relatedness between `A` and `B`. Given a vector...

Continuing from https://github.com/tskit-dev/tskit/pull/3077. I think this link from numpy docs is a good starting point: https://numpy.org/doc/2.2/reference/random/multithreading.html The bottom line is that one can execute multiple computations concurrently with `concurrent.futures.ThreadPoolExecutor` given...

This is useful to know without having to dive into the order requirements docs. I'm often looking this up to find the inherited state at a node.

Here's an example giving a maximum value of infinity in the returned matrix: ```python L = 10e6 # 10 Mb params = {"sequence_length": L, "population_size":1e4, "recombination_rate": 1e-8, "random_seed": 6} sweep_model...

bug

Hi, My SLiM simulations include multiple chromosomes (recombination rates are set at 0.5 between them, as described [here](https://github.com/tskit-dev/tskit/issues/176#issuecomment-483839707) ) and I'd like to create a VCF that reflects this structure....