Nothing
#' Convert patristic matrix to a newick string. Used inside: summarize_datelife_result.
#' @param patristic_matrix A patristic matrix
#' @return A newick string
#' @export
patristic_matrix_to_newick <- function(patristic_matrix) {
tree <- patristic_matrix_to_phylo(patristic_matrix)
if (inherits(tree, "phylo")) {
return(ape::write.tree(tree))
}
return(NA)
}
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.