R/print.R

Defines functions print.treedataList

Documented in print.treedataList

##' print information of a list of treedata objects
##'
##'
##' @title print
##' @param x a list of treedata objects
##' @param ... no used
##' @return message
##' @method print treedataList
##' @export
print.treedataList <- function(x, ...) {
    msg <- paste(length(x), "phylogenetic trees")
    cat(msg, "\n")
}

Try the treeio package in your browser

Any scripts or data that you put into this service are public.

treeio documentation built on Nov. 21, 2020, 2:01 a.m.