R/seuratFunctions.R
runSeuratNormalizeData.RdrunSeuratNormalizeData Wrapper for NormalizeData() function from seurat library Normalizes the sce object according to the input parameters
runSeuratNormalizeData(
inSCE,
useAssay,
normAssayName = "seuratNormData",
normalizationMethod = "LogNormalize",
scaleFactor = 10000,
verbose = TRUE
)(sce) object to normalize
Assay containing raw counts to use for normalization.
Name of new assay containing normalized data. Default
seuratNormData.
selected normalization method. Default
"LogNormalize".
numeric value that represents the scaling factor. Default
10000.
Logical value indicating if informative messages should
be displayed. Default is TRUE.
Normalized SingleCellExperiment object
data(scExample, package = "singleCellTK")
if (FALSE) {
sce <- runSeuratNormalizeData(sce, useAssay = "counts")
}