Description Usage Arguments Details Methods (by generic) Examples
The ExperimentList
class is a container that builds on
the SimpleList
with additional
checks for consistency in experiment names and length.
It contains a SimpleList
of experiments with sample identifiers.
One element present per experiment performed.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## S4 method for signature 'ExperimentList'
show(object)
## S4 method for signature 'ExperimentList'
dimnames(x)
## S4 method for signature 'ExperimentList'
mergeReplicates(x, replicates = list(),
simplify = BiocGenerics::mean, ...)
## S4 method for signature 'ANY,missing'
assay(x, i, ...)
## S4 method for signature 'ExperimentList'
assays(x, ..., withDimnames = TRUE)
## S4 method for signature 'ExperimentList,missing'
assay(x, i, ...)
## S4 method for signature 'ExperimentList,numeric'
assay(x, i, ...)
## S4 method for signature 'ExperimentList,character'
assay(x, i, ...)
|
object, x |
An |
replicates |
mergeReplicates: A |
simplify |
A function for merging columns where duplicates are indicated by replicates |
... |
Additional arguments. See details for more information. |
i |
A scalar |
withDimnames |
logical (default TRUE) whether to return dimension names |
Convert from SimpleList
or list
to the multi-experiment data container. When using the
mergeReplicates method, additional arguments are passed to the
given simplify
function argument (e.g., na.rm = TRUE)
show
: Show method for
ExperimentList
class
dimnames
: Get the dimension names for
an ExperimentList
using CharacterList
mergeReplicates
: Apply the mergeReplicates method on the
ExperimentList elements
assay
: Get the assay data for the default ANY class
assays
: Get the assay data from each element in the
ExperimentList
assay
: Convenience function for the assay of the first
element
assay
: Obtain the specified assay from ExperimentList
with a numeric
index
assay
: Get the specified assay from ExperimentList with
a character
index
1 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.