I am struggling with a fairly simple problem but I cannot find a solution to it yet.
I have a distance matrix calculated for some taxa. When generating a phylogenetic tree (let's say a NJ tree) it is quite easy to spot differences between trees. However, this becomes fairly complex and undo-able for large trees (over 20 or more taxa). Isn't there a way to identify significant differences between the trees (and/or using the sole matrix by itself)?
I have found the obvious Mantel (and derived) tests but that is basically to test for a linear correlation (Pearson) between the complete matrix. That is useful but not what I am looking for.
These are two example distance trees below;
[1] 'A' 0 0.136170479249233 0.111979752530934 0.306703146374829 0.284662370068735
[2] 'B' 0.136170479249233 0 0.144810467774404 0.333361262783542 0.381779151560938
[3] 'C' 0.111979752530934 0.144810467774404 0 0.346534459925035 0.303132688524432
[4] 'D' 0.306703146374829 0.333361262783542 0.346534459925035 0 0.271365855221696
[5] 'E' 0.284662370068735 0.381779151560938 0.303132688524432 0.271365855221696 0
[1] 'A' 0 0.136170479249233 0.111979752530934 0.306703146374829 0.284662370068735
[2] 'B' 0.136170479249233 0 0.144810467774404 0.333361262783542 0.131779151560938
[3] 'C' 0.111979752530934 0.144810467774404 0 0.346534459925035 0.303132688524432
[4] 'D' 0.306703146374829 0.333361262783542 0.346534459925035 0 0.271365855221696
[5] 'E' 0.284662370068735 0.131779151560938 0.303132688524432 0.271365855221696 0
Thanks for any pointer! Alex
it seems to be doing what to expect. Though its all visual and I have to see if it will satisfy all my needs....Again it seems trivial to use the proper key words in finding what you need.