findCorMarkers.Rd
Calculate spearman correlations between features in Seruat object. Sparse implementation enables faster calculation of spearman correlations without need to cast sparse expression matrix to dense matrix.
findCorMarkers(
object,
features.x = NULL,
features.y = rownames(object),
ncell.subset = 5000,
geosketch.subset = F,
assay = DefaultAssay(object),
slot = "data",
verbose = T
)
Seurat object
feature or meta feature. Spearman correlation between features.x and features.y are computed.
feature or meta feature. Spearman correlation between features.x and features.y are computed.
max number of cells to run analysis on. Default is 5000.
Use GeoSketch method to subsample scRNA-seq data while preserving rare cell states (https://doi.org/10.1016/j.cels.2019.05.003). Logical, T or F (Default F). Recommended if cell type representation is imbalanced.
Assay to run spearman correlation on. Default is DefaultAssay(object).
slot to run spearman correlation on. Default is data.
print progress. Default is T.
data.frame with spearman correlations.