as.DESeqDataSet | R Documentation |
Coerces an object to DESeqDataSet.
as.DESeqDataSet(x, ...)
## S3 method for class 'DGEList'
as.DESeqDataSet(x, ...)
x |
an R object |
... |
additional arguments to be passed to methods |
A DESeqDataSet
object
as.DESeqDataSet(DGEList)
: Coerce DGEList-class
objects
to DESeqDataSet
.
Andrzej Oleś <andrzej.oles@gmail.com>, 2016-2023
as.DGEList
require("edgeR")
counts = simulateRnaSeqData()
group = rep(c("case", "control"), each = 3)
dge = DGEList(counts = counts, group = group)
dge
as.DESeqDataSet(dge)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.