nrDesc: Number of descendants

View source: R/merge_order.R

nrDescR Documentation

Number of descendants

Description

Get the number of descendants for each node in the tree.

Usage

nrDesc(tree)

Arguments

tree

(phylo) a phylogenetic tree.

Value

(numeric)

Author(s)

Shubham Gupta, shubh.gupta@mail.utoronto.ca

See Also

Ntip, getNodeIDs

Examples

m <- matrix(c(0,1,2,3, 1,0,1.5,1.5, 2,1.5,0,1, 3,1.5,1,0), byrow = TRUE,
            ncol = 4, dimnames = list(c("run1", "run2", "run3", "run4"),
                                      c("run1", "run2", "run3", "run4")))
distMat <- as.dist(m, diag = FALSE, upper = FALSE)
## Not run: 
tree <- getTree(distMat)
getNodeIDs(tree)
nrDesc(tree)

## End(Not run)

shubham1637/DIAlign documentation built on March 27, 2023, 7:12 a.m.