Description Usage Arguments Value Examples
View source: R/seuratFunctions.R
seuratICA Computes ICA on the input sce object and stores the calculated independent components within the sce object
1 | seuratICA(inSCE, useAssay, reducedDimName = "seuratICA", nics = 20)
|
inSCE |
(sce) object on which to compute ICA |
useAssay |
Assay containing scaled counts to use in ICA. |
reducedDimName |
Name of new reducedDims object containing Seurat ICA Default |
nics |
Number of independent components to compute. Default |
Updated SingleCellExperiment
object which now contains the computed independent components
1 2 3 4 5 6 7 8 | data(scExample, package = "singleCellTK")
## Not run:
sce <- seuratNormalizeData(sce, useAssay = "counts")
sce <- seuratFindHVG(sce, useAssay = "counts")
sce <- seuratScaleData(sce, useAssay = "counts")
sce <- seuratICA(sce, useAssay = "counts")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.