View source: R/seuratFunctions.R
runSeuratNormalizeData | R Documentation |
runSeuratNormalizeData 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
)
inSCE |
(sce) object to normalize |
useAssay |
Assay containing raw counts to use for normalization. |
normAssayName |
Name of new assay containing normalized data. Default
|
normalizationMethod |
selected normalization method. Default
|
scaleFactor |
numeric value that represents the scaling factor. Default
|
verbose |
Logical value indicating if informative messages should
be displayed. Default is |
Normalized SingleCellExperiment
object
data(scExample, package = "singleCellTK")
## Not run:
sce <- runSeuratNormalizeData(sce, useAssay = "counts")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.