lumiMouseIDMapping_dbconn {lumiMouseIDMapping}R Documentation

Collect information about the package annotation DB

Description

Some convenience functions for getting a connection object to (or collecting information about) the package annotation DB.

Usage

  lumiMouseIDMapping_dbconn()
  lumiMouseIDMapping_dbfile()
  lumiMouseIDMapping_dbInfo()

Details

lumiMouseIDMapping_dbconn returns a connection object to the package annotation DB. IMPORTANT: Don't call dbDisconnect on the connection object returned by lumiMouseIDMapping_dbconn or you will break all the AnnDbObj objects defined in this package!

lumiMouseIDMapping_dbfile returns the path (character string) to the package annotation DB (this is an SQLite file).

lumiMouseIDMapping_dbInfo prints other information about the package annotation DB.

Value

lumiMouseIDMapping_dbconn: a DBIConnection object representing an open connection to the package annotation DB.
lumiMouseIDMapping_dbfile: a character string with the path to the package annotation DB.
lumiMouseIDMapping_dbInfo: none (invisible NULL).

See Also

dbConnect

Examples

  ## Show the database information (meta data)
  lumiMouseIDMapping_dbInfo()  

  ## List the tables included in the database
  conn <- lumiMouseIDMapping_dbconn()
  dbListTables(conn)

[Package lumiMouseIDMapping version 1.0.1 Index]