#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.