This function is a faster alternative to the function
path.dist()
in the phangorn package,
which can crash if the internal representation of trees does not conform to
certain (unspecified) expectations, and which treats all trees as unrooted.
The path distance is calculated by tabulating the cladistic difference (=
topological distance) between each pair of tips in each tree.
A precursor to the path distance Farris1969TreeDist
took the mean squared
difference between the elements of each tree's tabulation (Farris, 1973);
the method used here is that proposed by
Steel1993;textualTreeDist, which takes the square root of this
sum.
Other precursor measures are described in
Williams1971;textualTreeDist and
Phipps1971;textualTreeDist.
If a root node is present, trees are treated as rooted.
To avoid counting the root edge twice, use UnrootTree(tree)
before
calculating the path distance.
Use of the path distance is discouraged as it emphasizes
shallow relationships at the expense of deeper (and arguably more
fundamental) relationships Farris1973TreeDist.