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