View source: R/utility_functions.R
getExpressedGenes | R Documentation |
Identify expressed genes in Seurat object.
getExpressedGenes(
object,
min.pct = 0.1,
min.cell = NULL,
group = NA,
group.boolean = "OR"
)
object |
Seurat Object |
min.pct |
minimum expressing fraction. Default: 0.1. Ignored if min.cell is specified. |
min.cell |
minimum number of expressing cells. If specified, min.pct is ignored. |
group |
Character specifying metadata field to group cells by. If not specified, global expression fraction is evaluated. If specified, group-level gene lists are combined used group.boolean. |
group.boolean |
Boolean used to combine group genelists. One of "OR" or "AND". Default: "OR". Argument is ignored if 'group' is not specified. |
vector of gene names
Nicholas Mikolajewicz
split.var <- "seurat_clusters"
which.genes <- getExpressedGenes(object = so.query, min.pct = 0.1, group = split.var, group.boolean = "OR")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.