I want to generate a binary tree from a list of species. in ete3 it is possible to generate a tree but it contains polytomies, which need to be resolved manually. I would like to know if there is a method to do this automatically for all the polytomies in a tree. since there are a lot of polytomies in some cases, it is time consuming to resolve one by one. After I asked the above question, I have used the following. As you see, it has to be done for every polytomy.
poly_1= tree.get_common_ancestor("Pongo abeli - 9601", "Gorilla gorilla - 9593")
poly_2= tree.get_common_ancestor("Nipponia nippon - 128390", "Columba livia - 8932")
poly_r = poly_1.resolve_polytomy(recursive=True)
poly_r = poly_2.resolve_polytomy(recursive=True)
Thanks for the tips!