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 | DESeqDataSet(se, design, ignoreRank = FALSE)
DESeqDataSetFromMatrix(countData, colData, design, ignoreRank = FALSE, ...)
DESeqDataSetFromHTSeqCount(sampleTable, directory = "", design,
ignoreRank = FALSE, ...)
|
se |
a |
design |
a formula which specifies the design of the experiment, taking the form
|
ignoreRank |
for advanced use only, allows creation of a DESeqDataSet which is not of full rank |
countData |
for matrix input: a matrix of non-negative integers |
colData |
for matrix input: a |
... |
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 | countData <- matrix(1:4,ncol=2)
colData <- data.frame(condition=factor(c("a","b")))
dds <- DESeqDataSetFromMatrix(countData, colData, formula(~ condition))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.