combine | R Documentation |
Combine multiple objects
combine(x, y, ...)
## S4 method for signature 'DESeqAnalysis,DESeqAnalysis'
combine(x, y)
x |
Object. |
y |
Object. |
... |
Additional arguments. |
Combines the results from 2 separate DESeqAnalysis
objects. Note that the
internal DESeqDataSet
and DESeqTransform
objects slotted in x
and y
must be identical. The respective results must not contain any intersecting
names. The lfcShrink
slot is optional but must be either defined in both
objects or NULL
in both objects.
Modified object.
Updated 2022-03-08.
data(deseq)
## DESeqAnalysis ====
x <- deseq
y <- deseq
resultsNames(x) <- paste0("x_", resultsNames(x))
resultsNames(y) <- paste0("y_", resultsNames(y))
object <- combine(x, y)
resultsNames(object)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.