]> git.donarmstrong.com Git - ape.git/blobdiff - R/ace.R
new dist.topo (to be finished) and modified multi2di
[ape.git] / R / ace.R
diff --git a/R/ace.R b/R/ace.R
index 1dd0caa950b0c9bef4023b1c9024d9cb3fd92db8..c9a45110ca7eb926c0ca406494b30cf9cb9e9553 100644 (file)
--- a/R/ace.R
+++ b/R/ace.R
@@ -131,9 +131,10 @@ did not match: the former were ignored in the analysis.')
             }
             if (model == "SYM") {
                 np <- nl * (nl - 1)/2
-                rate[col(rate) < row(rate)] <- 1:np
+                sel <- col(rate) < row(rate)
+                rate[sel] <- 1:np
                 rate <- t(rate)
-                rate[col(rate) < row(rate)] <- 1:np
+                rate[sel] <- 1:np
             }
         } else {
             if (ncol(model) != nrow(model))
@@ -145,9 +146,10 @@ as the number of categories in `x'")
             np <- max(rate)
         }
         index.matrix <- rate
-        index.matrix[cbind(1:nl, 1:nl)] <- NA
-        rate[cbind(1:nl, 1:nl)] <- 0
-        rate[rate == 0] <- np + 1 # to avoid 0's since we will use this an numeric indexing
+        tmp <- cbind(1:nl, 1:nl)
+        index.matrix[tmp] <- NA
+        rate[tmp] <- 0
+        rate[rate == 0] <- np + 1 # to avoid 0's since we will use this as numeric indexing
 
         liks <- matrix(0, nb.tip + nb.node, nl)
         TIPS <- 1:nb.tip