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)
}
arcolombo/TxDbLite documentation built on July 10, 2020, 12:27 a.m.