View source: R/modelHomotypic.R
modelHomotypic | R Documentation |
Leverages user-provided cell annotations to model the proportion of homotypic doublets. Building on the assumption that literature-supported annotations reflect real transcriptional divergence, homotypic doublet proportions are modeled as the sum of squared annotation frequencies.
modelHomotypic(annotations)
annotations |
An nCell-length character vector of annotations. |
Numeric proportion of homotypic doublets.
Chris McGinnis
## Initial run, nExp set to Poisson loading estimate (e.g., 913 total
## doublet predictions)
data(pbmc_small)
seu <- pbmc_small
nExp_poi <- round(0.15*length(seu$RNA_snn_res.1))
seu <- doubletFinder(seu,
PCs = 1:10,
pN = 0.25,
pK = 0.01,
nExp = nExp_poi,
reuse.pANN = FALSE)
## With homotypic adjustment
annotations <- seu@meta.data$RNA_snn_res.1
homotypic.prop <- modelHomotypic(annotations)
nExp_poi.adj <- round(nExp_poi*(1-homotypic.prop))
seu <- doubletFinder(seu, pN = 0.25,
PCs = 1:10,
pK = 0.01,
nExp = nExp_poi.adj,
reuse.pANN = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.