TreeSwift is a pure Python library for parsing, manipulating, and iterating over (rooted) tree structures. TreeSwift places an emphasis on speed.
We strongly recommend that you consider our new package, CompactTree (a header-only C++ library that has a Python package wrapper with similar functionality as TreeSwift), though we will continue maintaining TreeSwift in parallel with CompactTree.
Installation
TreeSwift can be installed using pip:
sudo pip install treeswift
If you are using a machine on which you lack administrative powers, TreeSwift can be installed locally using pip:
pip install --user treeswift
Usage
Typical usage should be as follows:
Import the treeswift package
Use treeswift.read_tree_newick to load your Newick tree
Use the various Tree class functions on the resulting object as you need
import treeswift
tree = treeswift.read_tree_newick(my_newick_string)
for node in tree.traverse_postorder():
print(node)
TreeSwift
TreeSwift is a pure Python library for parsing, manipulating, and iterating over (rooted) tree structures. TreeSwift places an emphasis on speed.
We strongly recommend that you consider our new package, CompactTree (a header-only C++ library that has a Python package wrapper with similar functionality as TreeSwift), though we will continue maintaining TreeSwift in parallel with CompactTree.
Installation
TreeSwift can be installed using
pip:If you are using a machine on which you lack administrative powers, TreeSwift can be installed locally using
pip:Usage
Typical usage should be as follows:
treeswiftpackagetreeswift.read_tree_newickto load your Newick treeTreeclass functions on the resulting object as you needFull documentation can be found at https://niema.net/TreeSwift, and more examples can be found in the TreeSwift Wiki.
Citing TreeSwift
If you use TreeSwift in your work, please cite: