Description Usage Arguments Value Examples
Get and set the default assay
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | DefaultAssay(object, ...)
DefaultAssay(object, ...) <- value
## S3 method for class 'Assay'
DefaultAssay(object, ...)
## S3 method for class 'DimReduc'
DefaultAssay(object, ...)
## S3 method for class 'Graph'
DefaultAssay(object, ...)
## S3 method for class 'Seurat'
DefaultAssay(object, ...)
## S3 method for class 'SeuratCommand'
DefaultAssay(object, ...)
## S3 replacement method for class 'Seurat'
DefaultAssay(object, ...) <- value
|
object |
An object |
... |
Arguments passed to other methods |
value |
Name of assay to set as default |
The name of the default assay
An object with the new default assay
1 2 3 4 5 6 7 8 9 10 | # Get current default assay
DefaultAssay(object = pbmc_small)
# Create dummy new assay to demo switching default assays
new.assay <- pbmc_small[["RNA"]]
Key(object = new.assay) <- "RNA2_"
pbmc_small[["RNA2"]] <- new.assay
# switch default assay to RNA2
DefaultAssay(object = pbmc_small) <- "RNA2"
DefaultAssay(object = pbmc_small)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.