RunDoubletCalling | R Documentation |
Identification of heterotypic (or neotypic) doublets in single-cell RNAseq data.
RunDoubletCalling(
srt,
assay = "RNA",
db_method = "scDblFinder",
db_rate = ncol(srt)/1000 * 0.01,
...
)
srt |
A Seurat object. |
assay |
The name of the assay to be used for doublet-calling. Default is "RNA". |
db_method |
Doublet-calling methods used. Can be one of |
db_rate |
The expected doublet rate. By default this is assumed to be 1% per thousand cells captured (so 4% among 4000 thousand cells), which is appropriate for 10x datasets. |
... |
Arguments passed to the corresponding doublet-calling method. |
Returns Seurat object with the doublet prediction results and prediction scores stored in the meta.data slot.
data("pancreas_sub")
pancreas_sub <- RunDoubletCalling(pancreas_sub, db_method = "scDblFinder")
CellDimPlot(pancreas_sub, reduction = "umap", group.by = "db.scDblFinder_class")
FeatureDimPlot(pancreas_sub, reduction = "umap", features = "db.scDblFinder_score")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.