knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

regulonDB package takes an RSQLite object imported previously from an SQLite database file to R.

Libraries needed

Import an SQLite dataset

This step sholud be executed by the user before use the functions of regulonDB package. An example to load to R the SQLite object is:

  path_sqlite3 <- file.choose()
  regulon <- DBI::dbConnect(RSQLite::SQLite(), path_sqlite3)

listDatasets

Prints all marts contained in the SQL object

  listDatasets(regulon)

listAttributes

Prints a list of the columns of the mart

  listAttributes(regulon, "TF")

getAttr

Allows users to filter and retrieve data from a particular mart from SQLite database.

  getAttr(
    database = regulon,
    mart = "GENE",
    filters = c("operon_id", "operon_name"),
    value = c("ECK125235983","cmoM-mukFEB" ),
    cond = "and")

GetRegulatedGenesByTF

Shows all the genes regulated by a Transcription Factor indicated by the user

  GetRegulatedGenesByTF(regulon, "Ara")


josschavezf/regulonDB documentation built on Aug. 14, 2019, 4:43 a.m.