Nothing
`getBtimes` <-
function(file=NULL, string=NULL)
{
if (is.null(string) && !is.null(file))
tree <- read.tree(file)
else if (!is.null(string) && is.null(file))
tree <- read.tree(text = paste(string))
else
stop("you must enter a filename or a character string\n")
if (!is.ultrametric(tree))
stop("Tree is not ultrametric!");
return(rev(sort(as.numeric(branching.times(tree)))));
}
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.