runModelGeneVar: Calculate Variable Genes with Scran modelGeneVar

View source: R/scran_modelGeneVar.R

runModelGeneVarR Documentation

Calculate Variable Genes with Scran modelGeneVar

Description

Generates and stores variability data in the input SingleCellExperiment object, using modelGeneVar method.

Also selects a specified number of top HVGs and store the logical selection in rowData.

Usage

runModelGeneVar(inSCE, useAssay = "logcounts")

Arguments

inSCE

A SingleCellExperiment object

useAssay

A character string to specify an assay to compute variable features from. Default "logcounts".

Value

inSCE updated with variable feature metrics in rowData

Author(s)

Irzam Sarfraz

See Also

runFeatureSelection, runSeuratFindHVG, getTopHVG, plotTopHVG

Examples

data("scExample", package = "singleCellTK")
sce <- subsetSCECols(sce, colData = "type != 'EmptyDroplet'")
sce <- scaterlogNormCounts(sce, "logcounts")
sce <- runModelGeneVar(sce)
getTopHVG(sce, method = "modelGeneVar", hvgNumber = 10)

compbiomed/singleCellTK documentation built on Feb. 10, 2024, 3:32 a.m.