R/EnsDbLite.R

#' Constructor for an EnsDbLite object.
#'
#' @param x the name of the sqlite file
#' @param ... any additional arguments relating to ENSEMBL annotation database.
#' @return an EnsDbLite object.
#' 
#' @export
EnsDbLite <- function (x, ...) {
  ensdb <- TxDbLite(x, ...)
  class(ensdb) <- "EnsDbLite"
  return(ensdb)
}
RamsinghLab/TxDbLite documentation built on March 14, 2021, 10:49 a.m.