]> git.donarmstrong.com Git - ape.git/blobdiff - R/dist.topo.R
adding lmorigin + final correction to dist.topo
[ape.git] / R / dist.topo.R
index f2a10ae26352e16325763cea2cfda19fa5bcad46..06619ec5345a23cabe7b601ed0f46eb9e77a2c23 100644 (file)
@@ -1,4 +1,4 @@
-## dist.topo.R (2010-01-22)
+## dist.topo.R (2010-01-25)
 
 ##      Topological Distances, Tree Bipartitions,
 ##   Consensus Trees, and Bootstrapping Phylogenies
@@ -13,6 +13,8 @@ dist.topo <- function(x, y, method = "PH85")
     if (method == "score" && (is.null(x$edge.length) || is.null(y$edge.length)))
         stop("trees must have branch lengths for Billera et al.'s distance.")
     nx <- length(x$tip.label)
+    x <- unroot(x)
+    y <- unroot(y)
     bp1 <- .Call("bipartition", x$edge, nx, x$Nnode, PACKAGE = "ape")
     bp1 <- lapply(bp1, function(xx) sort(x$tip.label[xx]))
     ny <- length(y$tip.label) # fix by Otto Cordero