R/zzz.R

Defines functions .onAttach

# Package environment to store a couple of variables that must be global
meta.env <- new.env(parent=emptyenv())
assign("VERBOSE",NULL,envir=meta.env)
assign("LOGGER",NULL,envir=meta.env)
#.onLoad <- function(...) {
#    packageStartupMessage("\n\nWelcome to metaseqR 1.5.3. Please do not ",
#        "include \"bayseq\" in the statistics\nargument in metaseqr calls. ",
#        "There is an incompatibility with the latest\nversion of baySeq which ",
#        "we are fixing right now...\n\n")
#}

.onAttach <- function(libname, pkgname) {
    msg <- sprintf(
        "Package '%s' is deprecated and will be removed from Bioconductor
         version %s", pkgname,
        "3.13. Package functionality moved to Bioconductor package metaseqR2.")
    .Deprecated(msg=paste(strwrap(msg, exdent=2), collapse="\n"))
}

Try the metaseqR package in your browser

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

metaseqR documentation built on Nov. 8, 2020, 5:57 p.m.