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 27 28 29 30 31 32 33 34 35
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/methods.R
\docType{methods}
\name{summary}
\alias{summary}
\alias{summary,DESeqResults-method}
\title{Summarize DESeq results}
\usage{
\S4method{summary}{DESeqResults}(object, alpha, ...)
}
\arguments{
\item{object}{a \code{\link{DESeqResults}} object}
\item{alpha}{the adjusted p-value cutoff. If not set, this
defaults to the \code{alpha} argument which was used in
\code{\link{results}} to set the target FDR for independent
filtering, or if independent filtering was not performed,
to 0.1.}
\item{...}{additional arguments}
}
\description{
Print a summary of the results from a DESeq analysis.
}
\examples{
dds <- makeExampleDESeqDataSet(m=4)
dds <- DESeq(dds)
res <- results(dds)
summary(res)
}
\author{
Michael Love
}
|