Description Usage Arguments Value Examples
View source: R/seuratFunctions.R
seuratNormalizeData Wrapper for NormalizeData() function from seurat library Normalizes the sce object according to the input parameters
1 2 3 4 5 6 7 | seuratNormalizeData(
inSCE,
useAssay,
normAssayName = "seuratNormData",
normalizationMethod = "LogNormalize",
scaleFactor = 10000
)
|
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 |
Normalized SingleCellExperiment
object
1 2 3 4 5 | data(scExample, package = "singleCellTK")
## Not run:
sce <- seuratNormalizeData(sce, useAssay = "counts")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.