Nothing
#' Rquartet index.
#' @description The rquartet index counts the number of potential fully
#' balanced rooted subtrees of 4 tips in the tree. The function in treestats
#' assumes a bifurcating tree. For trees with polytomies, we refer the user to
#' treebalance::rquartedI, which can also take polytomies into account.
#' @param phy phylo object or ltable
#' @param normalization The index can be normalized by the expectation under
#' the Yule ("yule") or PDA model ("pda").
#' @return rquartet index
#' @references T. M. Coronado, A. Mir, F. Rosselló, and G. Valiente. A balance
#' index for phylogenetic trees based on rooted quartets. Journal of
#' Mathematical Biology, 79(3):1105-1148, 2019. doi: 10.1007/s00285-019-01377-w.
#' @export
rquartet <- function(phy, normalization = "none") {
normalization <- check_normalization_key(normalization)
if (!inherits(phy, "matrix") && !inherits(phy, "phylo")) {
stop("input object has to be phylo or ltable")
}
if (inherits(phy, "matrix")) {
answ <- calc_rquartet_ltable_cpp(phy)
}
if (inherits(phy, "phylo")) {
if (phy$Nnode + 1 != length(phy$tip.label)) {
stop("Tree must be binary, for non binary trees use treebalance::rQuartetI")
}
answ <- calc_rquartet_cpp(as.vector(t(phy$edge)))
}
if (normalization == "yule") {
ntips <- ifelse(inherits(phy, "matrix"),
length(phy[, 1]),
length(phy$tip.label))
answ <- answ / (choose(ntips, 4))
}
if (normalization == "pda") {
ntips <- ifelse(inherits(phy, "matrix"),
length(phy[, 1]),
length(phy$tip.label))
answ <- answ / (5 * choose(ntips, 4))
}
return(answ)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.