Tables page

Tables page#

Tables Page

In tskit, tree sequences are represented as a collection of tables. This page allows the querying and inspection of the raw data in these tables. For more detail on what the columns mean see the tskit data model. Note that additional columns, used by tsbrowse, are added to the data model and displayed here. These include convenience columns such as the number of inheritors for a given mutation.

Controls (sidebar):#

There are two sidebar controls, the first allows the user to select which table to display, and the second allows the user to filter the rows of the table based on a Python-like expression. This expression is passed to the pandas query method. Column names can be used as variables in the expression, and the expression should evaluate to a boolean value. For example, to filter the mutations table to only show mutations with a derived state of ‘C’ that have more than 20,000 inheritors, you could use the expression derived_state == 'C' and num_inheritors > 20000.