inst/extdata/org.testing.db/R/zzz.R

datacache <- new.env(hash=TRUE, parent=emptyenv())

org.testing <- function() showQCData("org.testing", datacache)
org.testing_dbconn <- function() dbconn(datacache)
org.testing_dbfile <- function() dbfile(datacache)
org.testing_dbschema <- function(file="", show.indices=FALSE) dbschema(datacache, file=file, show.indices=show.indices)
org.testing_dbInfo <- function() dbInfo(datacache)

org.testingORGANISM <- "Taeniopygia guttataTestingSubset"

.onLoad <- function(libname, pkgname)
{
    require("methods", quietly=TRUE)
    ## Connect to the SQLite DB
    dbfile <- system.file("extdata", "org.testing.sqlite", package=pkgname, lib.loc=libname)
    assign("dbfile", dbfile, envir=datacache)
    dbconn <- dbFileConnect(dbfile)
    assign("dbconn", dbconn, envir=datacache)

    ## Create the OrgDb object
    sPkgname <- sub(".db$","",pkgname)
    db <- loadDb(system.file("extdata", paste(sPkgname,
      ".sqlite",sep=""), package=pkgname, lib.loc=libname),
                   packageName=pkgname)    
    dbNewname <- AnnotationDbi:::dbObjectName(pkgname,"OrgDb")
    ns <- asNamespace(pkgname)
    assign(dbNewname, db, envir=ns)
    namespaceExport(ns, dbNewname)
        
    packageStartupMessage(AnnotationDbi:::annoStartupMessages("org.testing.db"))
}

.onUnload <- function(libpath)
{
    dbFileDisconnect(org.testing_dbconn())
}
Bioconductor/AnnotationDbi documentation built on Nov. 4, 2023, 7:32 p.m.