Note
Click here to download the full example code
Display a Phylogenetic Tree with a Square Dendrogram Style¶
We use a tree saved in json format from a likelihood function analysis of a non-stationary model. The tree was derived such that the the branch lengths are now “ENS”.
from cogent3.app import io
reader = io.load_json()
ens_tree = reader("../../data/GN-tree.json")
fig = ens_tree.get_figure(width=600, height=600)
fig.show()