Python package for building, comparing, annotating, manipulating and visualising trees. It provides a comprehensive API and a collection of command line tools, including utilities to work with the NCBI taxonomy tree.
Testing the version 4.0.0-beta, I tried to create a simple graph.
The first display/rendering of the graph is correct, but every subsequent call to show or render adds an extra duplicated label.
Code to reproduce the issue.
from ete4 import Tree
t = Tree()
t.populate(3)
t.show()
# closing the window and running again
t.show()
# closing the window and running again
t.show()
# closing the window and trying to render an image
t.render('render.png')
Hi in ete4 version, we no longer maintain with PyQt, which means we don't update in show(), render() method. Instead we use explore() in ete4 to visualize the tree
Testing the version
4.0.0-beta
, I tried to create a simple graph.The first display/rendering of the graph is correct, but every subsequent call to
show
orrender
adds an extra duplicated label.Code to reproduce the issue.
Output: