getExpressedGenes.Rd
Identify expressed genes in Seurat object.
getExpressedGenes(
object,
min.pct = 0.1,
min.cell = NULL,
group = NA,
group.boolean = "OR"
)
Seurat Object
minimum expressing fraction. Default: 0.1. Ignored if min.cell is specified.
minimum number of expressing cells. If specified, min.pct is ignored.
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.
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
split.var <- "seurat_clusters"
which.genes <- getExpressedGenes(object = so.query, min.pct = 0.1, group = split.var, group.boolean = "OR")
#> Error in DefaultAssay(so): object 'so.query' not found