R/AllGenerics.R

#' 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")

Try the DEFormats package in your browser

Any scripts or data that you put into this service are public.

DEFormats documentation built on Nov. 8, 2020, 5:31 p.m.