R/RepDbLite.R

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