Store_Palette_Seurat {scCustomize} | R Documentation |
Store color palette in Seurat object
Description
Wrapper function around Store_Misc_Info_Seurat
to store color palettes.
Usage
Store_Palette_Seurat(
seurat_object,
palette,
palette_name,
list_as_list = FALSE,
overwrite = FALSE
)
Arguments
seurat_object |
object name. |
palette |
vector or list of vectors containing color palettes to store. If list of palettes
see |
palette_name |
name to give the palette(s) in |
list_as_list |
logical. If |
overwrite |
Logical. Whether to overwrite existing items with the same name. Default is FALSE, meaning
that function will abort if item with |
Value
Seurat Object with new entries in the @misc
slot.
Examples
library(Seurat)
clu_pal <- c("red", "green", "blue")
pbmc_small <- Store_Misc_Info_Seurat(seurat_object = pbmc_small, data_to_store = clu_pal,
data_name = "rd1_colors")
[Package scCustomize version 2.1.2 Index]