| Assay5-class {SeuratObject} | R Documentation |
The v5 Assay Object
Description
The v5 Assay is the typical Assay class used in Seurat
v5; ...
Slots
layersA named list containing expression matrices; each matrix should be a two-dimensional object containing some subset of cells and features defined in the
cellsandfeaturesslots. Cell and feature membership is recorded in thecellsandfeaturesslots, respectivelycellsA logical mapping of cell names and layer membership; this map contains all the possible cells that this assay can contain. New layers must have some subset of cells present in this map
featuresA logical mapping of feature names and layer membership; this map contains all the possible features that this assay can contain. New layers must have some subset of features present in this map
defaultA one-length integer with the end index of the default layer; the default layer be all layers up to and including the layer at index
defaultassay.origOriginal assay that this assay is based off of; used to track assay provenance
meta.dataA data frame with feature-level meta data; should have the same number of rows as
featuresmiscA named list of unstructured miscellaneous data
keyA one-length character vector with the object's key; keys must be one or more alphanumeric characters followed by an underscore “
_” (regex pattern “^[a-zA-Z][a-zA-Z0-9]*_$”)
See Also
v5 Assay object, validity, and interaction methods:
$.Assay5(),
Assay5-validity,
[.Assay5(),
[[.Assay5(),
dim.Assay5(),
dimnames.Assay5(),
merge.Assay5(),
split.Assay5(),
subset.Assay5()