Skip to content

Instantly share code, notes, and snippets.

@flashton2003
Created August 17, 2019 01:03
Embed
What would you like to do?
import dendropy as dpy
tree = dpy.Tree.get_from_path('/path/to/tree.nxs', 'nexus')
for nd in tree.postorder_node_iter():
if nd.is_internal():
nd_annot = nd.annotations.values_as_dict()
print nd_annot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment