Description Usage Arguments Value Examples
View source: R/seuratFunctions.R
seuratComputeHeatmap Computes the heatmap plot object from the pca slot in the input sce object
1 2 3 4 5 6 7 8 9 10 |
inSCE |
(sce) object from which to compute heatmap (pca should be computed) |
useAssay |
Assay containing scaled counts to use in heatmap. |
useReduction |
Reduction method to use for computing clusters. One of "pca" or "ica". Default |
dims |
Number of components to generate heatmap plot objects. If |
nfeatures |
Numer of features to include in the heatmap. Default |
fast |
See DimHeatmap for more information. Default |
combine |
See DimHeatmap for more information. Default |
raster |
See DimHeatmap for more information. Default |
plot object
1 2 3 4 5 6 7 8 9 10 | data(scExample, package = "singleCellTK")
## Not run:
sce <- seuratNormalizeData(sce, useAssay = "counts")
sce <- seuratFindHVG(sce, useAssay = "counts")
sce <- seuratScaleData(sce, useAssay = "counts")
sce <- seuratPCA(sce, useAssay = "counts")
heatmap <- seuratComputeHeatmap(sce, useAssay = "counts")
seuratHeatmapPlot(heatmap)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.