This function takes a Seurat object as an input, and returns an expression matrix based on subsetting parameters. Either none, one, or two metadata features can be selected for a given input.
seurat_extract(
seu_obj,
assay = "RNA",
meta1 = NULL,
value_meta1 = NULL,
meta2 = NULL,
value_meta2 = NULL,
pseudocount = 0.001
)
Seurat object
Seurat assay to extract. Defaults to RNA
Metadata column to subset
Value to select within meta1
column
Metadata column to subset
Value to select within meta2
column
Pseudocount to add to data. Defaults to 0.001
Matrix containing count values of selected populations
if (FALSE) {
cd4 <- seurat_extract(
Seurat_Object,
meta1 = "Hour",
value_meta1 = 12,
meta2 = "Cell_Type",
value_meta2 = "CD4"
)
}