Description Usage Arguments Value Examples
View source: R/spatialPreprocess.R
Adds metadata required for downstream analyses, and (optionally) performs PCA on log-normalized expression of top HVGs.
1 2 3 4 5 6 7 8 9 | spatialPreprocess(
sce,
platform = c("Visium", "ST"),
n.PCs = 15,
n.HVGs = 2000,
skip.PCA = FALSE,
log.normalize = TRUE,
assay.type = "logcounts"
)
|
sce |
SingleCellExperiment to preprocess |
platform |
Spatial sequencing platform. Used to determine spot layout and neighborhood structure (Visium = hex, ST = square). |
n.PCs |
Number of principal components to compute. We suggest using the top 15 PCs in most cases. |
n.HVGs |
Number of highly variable genes to run PCA upon. |
skip.PCA |
Skip PCA (if dimensionality reduction was previously computed.) |
log.normalize |
Whether to log-normalize the input data with scater. May be omitted if log-normalization previously computed. |
assay.type |
Name of assay in |
SingleCellExperiment with PCA and BayesSpace metadata
1 2 | sce <- exampleSCE()
sce <- spatialPreprocess(sce)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.