#' Convert to DGEList
#'
#' Coerces an object to \linkS4class{DGEList}.
#'
#' @param x an \R object
#' @param ... additional arguments to be passed to methods
#' @return A \code{\linkS4class{DGEList}} object.
#' @seealso \code{\link{as.DESeqDataSet}}
#' @template author
#' @export
as.DGEList = function (x, ...) UseMethod("as.DGEList")
#' Convert to DESeqDataSet
#'
#' Coerces an object to \linkS4class{DESeqDataSet}.
#'
#' @inheritParams as.DGEList
#' @return A \code{\linkS4class{DESeqDataSet}} object
#' @seealso \code{\link{as.DGEList}}
#' @template author
#' @export
as.DESeqDataSet = function (x, ...) UseMethod("as.DESeqDataSet")
#' DGEList Constructor Generic
#'
#' Creates a \linkS4class{DGEList} object.
#'
#' @return A \linkS4class{DGEList} object.
#' @template author
#' @export
setGeneric("DGEList", valueClass = "DGEList")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.