R/utilities.R

Defines functions stopifnot_simplify_ok

stopifnot_simplify_ok <-
    function(simplify, nargs)
{
    nms <- names(formals(simplify))
    if ((length(nms) < nargs) && !("..." %in% nms))
        stop("'simplify*()' must accept ", nargs, " arguments")
}        

Try the RaggedExperiment package in your browser

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

RaggedExperiment documentation built on April 17, 2021, 6:08 p.m.