RunQC | R Documentation |
Perform QC on single cell RNA-seq data with seurat, store all stats and return seurat object
RunQC(
object,
org = "mouse",
filter = T,
LowerFeatureCutoff = 200,
UpperFeatureCutoff = "MAD",
UpperMitoCutoff = 5,
doubletdetection = T,
dir
)
object |
Seurat object |
org |
Organism (mouse/human) |
filter |
Specify whether to filter data |
LowerFeatureCutoff |
Lower value for Feature cutoff |
UpperMitoCutoff |
Upper Mito Pecent cuoff default is 0.05 |
doubletdetection |
Logical to specify if you want to run scds doublet detection |
dir |
Output directory for QC files |
UpperfeatureCutoff |
Upper bound, can be an integer or if set to MAD will be 3 median + 3*MAD |
Seurat object
scrna = RunQC(object=scrna,org="mouse",filter = T,LowerFeatureCutoff=200,UpperFeatureCutoff="MAD",UpperMitoCutoff=0.05,doubletdetection = T)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.