I was using tanglegram() function from a great R package dendextend to draw comparison of phylogenetic trees. However, it requires to have identical set of tip labels in both trees and gives following error when presented with two trees with not identical set of tip labels:
Error in match_order_by_labels(dend2, dend1) :
labels do not match in both trees. Please make sure to fix the labels names!)
I have some trees where e.g. 80% of tip labels overlap but there are some tree-specific tips (e.g. one tree with tip labels A, B, C, D, E, F and another tree with labels C, D, E, F, G, H) which I'd love to compare.
Is there an existing tool to draw such a tree comparison (similar to the one produced by tanglegram: https://cran.r-project.org/web/packages/dendextend/vignettes/Cluster_Analysis.html)? Ideally R but I will be thankful for any platform. Thanks!