1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/AllClasses.R
\docType{class}
\name{DESeqResults-class}
\alias{DESeqResults-class}
\alias{DESeqResults}
\title{DESeqResults object and constructor}
\usage{
DESeqResults(DataFrame, priorInfo = list())
}
\arguments{
\item{DataFrame}{a DataFrame of results, standard column names are:
baseMean, log2FoldChange, lfcSE, stat, pvalue, padj.}
\item{priorInfo}{a list giving information on the log fold change prior}
}
\value{
a DESeqResults object
}
\description{
This constructor function would not typically be used by "end users".
This simple class indirectly extends the DataFrame class defined in the
S4Vectors package to allow other packages to write methods for results
objects from the DESeq2 package. It is used by \code{\link{results}}
to wrap up the results table.
}
|