You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Succinct tree sequences are a highly efficient way of storing a set of related DNA sequences by encoding their ancestral history as a set of correlated trees along the genome. The tree sequence format is output by a number of software libraries and programs (such as [msprime](https://github.com/tskit-dev/msprime), [SLiM](https://github.com/MesserLab/SLiM), [fwdpp](http://molpopgen.github.io/fwdpp/), and [tsinfer](https://tsinfer.readthedocs.io/en/latest/)) that either simulate or infer the evolutionary history of genetic sequences.
10
+
Succinct tree sequences are a highly efficient way of storing a set of related DNA
11
+
sequences by encoding their ancestral history as a set of correlated trees along the
12
+
genome. The tree sequence format is output by a number of software libraries and programs
13
+
(such as [msprime](https://github.com/tskit-dev/msprime), [SLiM](https://github.com/MesserLab/SLiM), [fwdpp](http://molpopgen.github.io/fwdpp/), and [tsinfer](https://tsinfer.readthedocs.io/en/latest/)) that either simulate or infer the evolutionary history of genetic sequences.
11
14
12
-
The `tskit` library provides the underlying functionality used to load, examine, and manipulate tree sequences, including efficient methods for calculating genetic statistics. It often forms part of an installation of other software packages such as those listed above. Please see the [documentation](https://tskit.readthedocs.io/en/latest/) for further details, which includes [installation instructions](https://tskit.readthedocs.io/en/latest/installation.html).
15
+
The `tskit` library provides the underlying functionality used to load, examine, and
16
+
manipulate tree sequences, including efficient methods for calculating genetic
17
+
statistics. It often forms part of an installation of other software packages such as
18
+
those listed above. Please see the
19
+
[documentation](https://tskit.readthedocs.io/en/latest/) for further details, which
See the [road map](https://github.com/tskit-dev/tskit/blob/main/ROADMAP.md)
13
23
14
-
To get started with tskit, tutorials and other content are at http://tskit.dev. For help and support from the community you can use [discussions](https://github.com/tskit-dev/tskit/discussions) here on github, or raise an issue for a specific bug or feature request.
24
+
To get started with tskit, tutorials and other content are at http://tskit.dev. For help
25
+
and support from the community you can use
26
+
[discussions](https://github.com/tskit-dev/tskit/discussions) here on github, or raise an
27
+
issue for a specific bug or feature request.
15
28
16
-
The base `tskit` library provides both a Python and C API. A Rust API is provided in the [tskit-rust](https://github.com/tskit-dev/tskit-rust) repository.
29
+
tskit warmly welcomes contributions from the community. Raise an issue if you have an
30
+
idea you'd like to work on, or submit a PR for comments and help.
31
+
32
+
The base `tskit` library provides both a Python and C API. A Rust API is provided in the
Most users of `tskit` will use the python API as it provides a convenient, high-level API to access, analyse and create tree sequences. Full documentation is [here](https://tskit.readthedocs.io/en/latest/python-api.html).
43
+
Most users of `tskit` will use the python API as it provides a convenient, high-level API
44
+
to access, analyse and create tree sequences. Full documentation is
The `tskit` C API provides comprehensive, low-level methods for manipulating and processing tree-sequences. Written to the C99 standard and fully thread-safe, it can be used with either C or C++. Full documentation is [here](https://tskit.readthedocs.io/en/latest/c-api.html).
51
+
The `tskit` C API provides comprehensive, low-level methods for manipulating and
52
+
processing tree-sequences. Written to the C99 standard and fully thread-safe, it can be
0 commit comments