Skip to main content

tralda

License: MIT pypi version Python PyPI downloads DOI CI

A Python library for tree algorithms and data structures.

Installation and usage

The package requires Python 3.10 or higher. The tralda package is available on PyPI:

pip install tralda

See also the page Installation in the documentation.

The tralda documentation contains a user guide with example code as well as the API reference.

If you want to contribute to the project, please see the contributing guidelines. Please report any bugs and questions in the Issues section.

Overview

tralda provides a collection of efficient algorithms and data structures centered around rooted trees, with a focus on phylogenetics and combinatorial algorithms. It is designed to serve as a building block for research software in computational biology and related fields.

Tree data structure — The Tree and TreeNode classes in tralda.datastructures offer a flexible rooted-tree representation with support for traversals (preorder, postorder, level-order), subtree operations, tree generation, and utilities such as topology comparison and hierarchy extraction.

Lowest common ancestor (LCA) — An $O(n)$-time/space preprocessing structure for $O(1)$ LCA queries, based on the algorithm by Bender et al. (2005). Available as LCA in tralda.datastructures.

Supertree computation — The tralda.supertree subpackage implements several algorithms for constructing supertrees and consensus trees from a set of (partial) input trees:

  • BUILD (Aho et al. 1981) — classic triple-based supertree construction.
  • BuildST (Deng & Fernández-Baca 2016) — fast compatibility testing and supertree construction for rooted phylogenetic trees.
  • LinCR (Schaller et al. 2021) — linear-time algorithm for the minimal common refinement of rooted phylogenetic trees on a common leaf set.
  • Loose consensus tree (Jansson et al. 2016) — linear-time construction of the loose consensus tree for trees with the same leaf set.

Balanced binary search treestralda.datastructures.bst provides AVL trees and red-black trees (ordered sets and dictionaries) with $O(\log n)$ insertion, deletion, and lookup, as well as efficient split and join operations.

Dynamic graph connectivity — The HDTGraph class in tralda.datastructures.hdtgraph implements the poly-logarithmic dynamic graph structure described by Holm et al. (2001), supporting edge insertions and deletions with $O(\log^2 n)$ amortized cost while answering connectivity queries in $O(\log n)$.

Cograph detection and editingtralda.cograph offers linear-time cograph recognition (Corneil et al. 1985) with cotree construction, as well as a heuristic for cograph editing (Crespelle 2021) that modifies a graph with a near-minimum number of edge insertions/deletions to make it a cograph.

Visualization

tralda.visualization renders Tree objects as static (matplotlib) or interactive (Plotly) figures, with horizontal, vertical, and circular layouts and a flexible per-node styling API. Optional extra: pip install tralda[viz].

Click to expand the code example
from tralda.datastructures import LCA, Tree
from tralda.visualization import plot_tree
from tralda.visualization.style import NodeStyle, TreeStyle

T = Tree.parse_newick(
    "((((Human:6,Chimpanzee:6)HC:2,Gorilla:8)HCG:9,Orangutan:17)Hominidae:3,"
    "(Gibbon:17,Siamang:17)Hylobatidae:3)Hominoidea;"
)

# Compute and highlight the last common ancestor of Human and Gorilla.
lca = LCA(T)
lca_node = lca("Human", "Gorilla")

tree_style = TreeStyle(
    leaf_symbol="circle",
    node_overrides={lca_node: NodeStyle(symbol="star", symbol_size=13, symbol_color="gold")},
)

fig, ax = plot_tree(T, tree_style=tree_style)

Ape phylogeny with leaf symbols and a highlighted LCA

See the visualization user guide for the full styling API and more examples.

Citation and references

If you use tralda in your project or code from it, please consider citing:

Schaller, D., Hellmuth, M., Stadler, P.F. (2021) A simpler linear-time algorithm for the common refinement of rooted phylogenetic trees on a common leaf set. Algorithms for Molecular Biology 16, 23 (2021). https://doi.org/10.1186/s13015-021-00202-8

Additional references to algorithms that were implemented are given in the source code.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tralda-2.1.0.tar.gz (102.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tralda-2.1.0-py3-none-any.whl (119.4 kB view details)

Uploaded Python 3

File details

Details for the file tralda-2.1.0.tar.gz.

File metadata

  • Download URL: tralda-2.1.0.tar.gz
  • Upload date:
  • Size: 102.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tralda-2.1.0.tar.gz
Algorithm Hash digest
SHA256 c1043c8e991e41ded9be25559f2d3a77b0ca93f0e46b53ab554321bb5f01a6d5
MD5 98fdddcb03aa40007263186327fde2b3
BLAKE2b-256 2aceac4ac5e3dba019a690cd30444647d713f01ab6e69e2785f60eab595f418d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tralda-2.1.0.tar.gz:

Publisher: publish.yml on david-schaller/tralda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tralda-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: tralda-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 119.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tralda-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d78e9663780f3b05371c750525027bdc28dedcb00480c87f90af94df9fa407ad
MD5 d78a64ad010f4c20b22856141ba8829d
BLAKE2b-256 445d5ad78b4511dd41ca8ae3b202d285a70cf71774ac0f69700fe9b010a1389a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tralda-2.1.0-py3-none-any.whl:

Publisher: publish.yml on david-schaller/tralda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.1.0 This release

2 files

2.0.3

2 files

2.0.2

2 files

2.0.1

2 files

2.0.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

0.0.2

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page