% Generated by roxygen2: do not edit by hand % Please edit documentation in R/spatialPreprocess.R \name{spatialPreprocess} \alias{spatialPreprocess} \title{Preprocess a spatial dataset for BayesSpace} \usage{ spatialPreprocess( sce, platform = c("Visium", "VisiumHD", "ST"), n.PCs = 15, n.HVGs = 2000, skip.PCA = FALSE, log.normalize = TRUE, assay.type = "logcounts", BSPARAM = ExactParam(), BPPARAM = SerialParam() ) } \arguments{ \item{sce}{SingleCellExperiment to preprocess} \item{platform}{Spatial sequencing platform. Used to determine spot layout and neighborhood structure (Visium = hex, VisiumHD = square, ST = square).} \item{n.PCs}{Number of principal components to compute. We suggest using the top 15 PCs in most cases.} \item{n.HVGs}{Number of highly variable genes to run PCA upon.} \item{skip.PCA}{Skip PCA (if dimensionality reduction was previously computed.)} \item{log.normalize}{Whether to log-normalize the input data with scater. May be omitted if log-normalization previously computed.} \item{assay.type}{Name of assay in \code{sce} containing normalized counts. Leave as "logcounts" unless you explicitly pre-computed a different normalization and added it to \code{sce} under another assay. Note that we do not recommend running BayesSpace on PCs computed from raw counts.} \item{BSPARAM}{A \linkS4class{BiocSingularParam} object specifying which algorithm should be used to perform the PCA. By default, an exact PCA is performed, as current spatial datasets are generally small (<10,000 spots). To perform a faster approximate PCA, please specify \code{FastAutoParam()} and set a random seed to ensure reproducibility.} \item{BPPARAM}{A \linkS4class{BiocParallelParam} object specifying whether to model the gene variation in parallel or not (default to \code{SerialParam()}). To perform faster modeling, please specify \code{SnowParam()} or \code{MulticoreParam()}.} } \value{ SingleCellExperiment with PCA and BayesSpace metadata } \description{ Adds metadata required for downstream analyses, and (optionally) performs PCA on log-normalized expression of top HVGs. } \examples{ sce <- exampleSCE() sce <- spatialPreprocess(sce) }