View source: R/seuratFunctions.R
runSeuratFindHVG | R Documentation |
runSeuratFindHVG Find highly variable genes and store in the input sce object
runSeuratFindHVG(
inSCE,
useAssay = "counts",
method = c("vst", "dispersion", "mean.var.plot"),
hvgNumber = 2000,
createFeatureSubset = "hvf",
altExp = FALSE,
verbose = TRUE
)
inSCE |
(sce) object to compute highly variable genes from and to store back to it |
useAssay |
Specify the name of the assay to use for computation
of variable genes. It is recommended to use a raw counts assay with the
|
method |
selected method to use for computation of highly variable
genes. One of |
hvgNumber |
numeric value of how many genes to select as highly
variable. Default |
createFeatureSubset |
Specify a name of the subset to create
for the identified variable features. Default is |
altExp |
Logical value indicating if the input object is an
altExperiment. Default |
verbose |
Logical value indicating if informative messages should
be displayed. Default is |
Updated SingleCellExperiment
object with highly variable genes
computation stored
runFeatureSelection
, runModelGeneVar
,
getTopHVG
, plotTopHVG
data(scExample, package = "singleCellTK")
sce <- runSeuratFindHVG(sce)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.