I am working on phylogenies by using Python libraries (Bio.Phylo and DendroPy).
I have to import 2 trees in Newick format (this is obviously not the difficult part) and join them together, more precisely I have to add one tree at one tip/leaf of another.
I have tried with add_child
and new_child
methods from DendroPy, but without success.
How would I solve this issue?