File: design.Rd

package info (click to toggle)
r-bioc-deseq2 1.30.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,720 kB
  • sloc: cpp: 413; sh: 14; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (2)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/methods.R
\docType{methods}
\name{design}
\alias{design}
\alias{design,DESeqDataSet-method}
\alias{design<-,DESeqDataSet,formula-method}
\alias{design<-,DESeqDataSet,matrix-method}
\title{Accessors for the 'design' slot of a DESeqDataSet object.}
\usage{
\S4method{design}{DESeqDataSet}(object)

\S4method{design}{DESeqDataSet,formula}(object) <- value

\S4method{design}{DESeqDataSet,matrix}(object) <- value
}
\arguments{
\item{object}{a \code{DESeqDataSet} object}

\item{value}{a \code{formula} used for estimating dispersion
and fitting Negative Binomial GLMs}
}
\description{
The design holds the R \code{formula} which expresses how the
counts depend on the variables in \code{colData}.
See \code{\link{DESeqDataSet}} for details.
}
\examples{

dds <- makeExampleDESeqDataSet(m=4)
design(dds) <- formula(~ 1)

}