| as.DESeqDataSet {DEFormats} | 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
DGEList: Coerce DGEList-class objects
to DESeqDataSet.
Andrzej OleÅ› <andrzej.oles@embl.de>, 2016-2017
require("edgeR")
counts = simulateRnaSeqData()
group = rep(c("case", "control"), each = 3)
dge = DGEList(counts = counts, group = group)
dge
as.DESeqDataSet(dge)