Description Usage Arguments Value References Examples
The DESeqDataSet
is a subclass of SummarizedExperiment
,
used to store the input values, intermediate calculations and results of an
analysis of differential expression. The DESeqDataSet
class
enforces non-negative integer values in the "counts" matrix stored as
the first element in the assay list.
In addition, a formula which specifies the design of the experiment must be provided.
The constructor functions create a DESeqDataSet object
from various types of input:
a SummarizedExperiment, a matrix, or count files generated by
the python package HTSeq. See the vignette for examples of construction
from all three input types.
1 2 3 4 5 6 7 | DESeqDataSet(se, design, ignoreRank = FALSE)
DESeqDataSetFromMatrix(countData, colData, design, tidy = FALSE,
ignoreRank = FALSE, ...)
DESeqDataSetFromHTSeqCount(sampleTable, directory = "", design,
ignoreRank = FALSE, ...)
|
se |
a |
design |
a |
ignoreRank |
use of this argument is reserved for DEXSeq developers only. Users will immediately encounter an error upon trying to estimate dispersion using a design with a model matrix which is not full rank. |
countData |
for matrix input: a matrix of non-negative integers |
colData |
for matrix input: a |
tidy |
for matrix input: whether the first column of countData is the rownames for the count matrix |
... |
arguments provided to |
sampleTable |
for htseq-count: a |
directory |
for htseq-count: the directory relative to which the filenames are specified |
A DESeqDataSet object.
See http://www-huber.embl.de/users/anders/HTSeq for htseq-count
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.