Nothing
##' read newick tree
##'
##'
##' @title read.newick
##' @param file newick file
##' @param node.label parse node label as 'label' or 'support' value
##' @param ... additional parameter, passed to 'read.tree'
##' @return phylo or treedata object
##' @export
##' @author Guangchuang Yu
read.newick <- function(file, node.label = "label", ...) {
node.label <- match.arg(node.label, c("support", "label"))
tree <- read.tree(file, ...)
if (node.label == "label")
return(tree)
df <- tibble(node = nodeIds(tree),
support = as.numeric(tree$node.label))
tree$node.label <- NULL
new("treedata",
phylo = tree,
data = df)
}
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.