]> git.donarmstrong.com Git - ape.git/commitdiff
removed the print(node.labels)
authorparadis <paradis@6e262413-ae40-0410-9e79-b911bd7a66b7>
Thu, 10 Apr 2008 18:30:02 +0000 (18:30 +0000)
committerparadis <paradis@6e262413-ae40-0410-9e79-b911bd7a66b7>
Thu, 10 Apr 2008 18:30:02 +0000 (18:30 +0000)
git-svn-id: https://svn.mpl.ird.fr/ape/dev/ape@24 6e262413-ae40-0410-9e79-b911bd7a66b7

Changes
R/multi2di.R

diff --git a/Changes b/Changes
index 729a2530b6b39bb6b1e8db23cc7d8d951e35c1ca..19e350a2dbedeb0bffbc50a9ac0eb2fb17394c58 100644 (file)
--- a/Changes
+++ b/Changes
@@ -9,7 +9,8 @@ BUG FIXES
     o The x/y aspect of the plot is now respected when plotting a
       circular tree (type = "r" or "f").
 
-    o Drawing the tip labels sometimes when plotting circular trees.
+    o Drawing the tip labels sometimes failed when plotting circular
+      trees.
 
 
 OTHER CHANGES
index 731f3286fee3357ae11020b7f4a8c66725d7b5a7..5099fd12a60c6b796268aaefb911ea6421bbcf67 100644 (file)
@@ -1,4 +1,4 @@
-## multi2di.R (2008-03-17)
+## multi2di.R (2008-04-09)
 
 ##   Collapse and Resolve Multichotomies
 
@@ -63,11 +63,9 @@ multi2di <- function(phy, random = TRUE)
     if (wbl)
       phy$edge.length <- c(phy$edge.length[-edge2delete], new.edge.length)
     if (!is.null(attr(phy, "order"))) attr(phy, "order") <- NULL
-    print(phy$node.label)
     if (!is.null(phy$node.label))
         phy$node.label <-
             c(phy$node.label, rep("", phy$Nnode - length(phy$node.label)))
-    print(phy$node.label)
     reorder(phy)
     ##read.tree(text = write.tree(phy))
 }