mikoScore.Rd
Feature expression programs are scored by first computing standardized module scores with `AddSModuleScore` and then scaling the scores by the null distributions calculated using `nullScore`. The resulting scores are robust to gene set size and can be further used to compute whether feature expression program is significantly up-regulated in single-cell population.
mikoScore(
object,
geneset,
nullscore,
do.center = F,
do.scale = T,
assay = DefaultAssay(object),
nworkers = 1,
nbin = 24,
verbose = T
)
Seurat Object
A list of vectors of features for expression programs; each entry should be a vector of feature names
`nullScore` output for provided `object`. Must run `nullScore` prior to running `mikoScore`.
center scores using null model predictions. Default is FALSE.
scale scores by null model variance predictions. Default is TRUE.
Name of assay to use.
Number of workers for parallel implementation. Default is 1.
Number of bins of aggregate expression levels for all analyzed features. See `AddModuleScore` for details.
Print progress. Default is TRUE.
list of results.
AddSModuleScore
for standardized module scoring, nullScore
for calculating null score distributions sigScore
for derivation of p values for miko scores.