Description Format Details See Also Examples
Data simulated by using DESeq2's makeExampleDESeqDataSet()
A DESeqDataSet with 1000 rows and 12 columns:
class: DESeqDataSet dim: 1000 12 metadata(1): version assays(1): counts rownames(1000): gene1 gene2 ... gene999 gene1000 rowData names(3): trueIntercept trueBeta trueDisp colnames(12): sample1 sample2 ... sample11 sample12 colData names(1): condition
created in R:
simDDS <- makeExampleDESeqDataSet(n = 1000, m = 12)
colData(simDDS)$condition <- factor(c(rep("A", 4), rep("B", 4), rep("C", 4)))
DESeq2::makeExampleDESeqDataSet
1 2 3 4 | ## Not run:
(simDDS)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.