Description Usage Arguments Value Author(s) See Also Examples
Utility function that loops our standard quality control plots, for easy visualization.
1 2 3 4 5 6 7 8 9 10 | ## S4 method for signature 'SingleCellExperiment'
plotQC(object, interestingGroups,
geom = c("ecdf", "ridgeline", "violin", "histogram", "boxplot"),
headerLevel = 2L, legend = FALSE, return = c("grid", "list",
"markdown"))
## S4 method for signature 'seurat'
plotQC(object, interestingGroups, geom = c("ecdf",
"ridgeline", "violin", "histogram", "boxplot"), headerLevel = 2L,
legend = FALSE, return = c("grid", "list", "markdown"))
|
object |
Object. |
interestingGroups |
Character vector of interesting groups. Must be
formatted in camel case and intersect with |
geom |
Plot type. Uses |
headerLevel |
R Markdown header level. |
legend |
Include plot legend. |
return |
Return type. Uses |
grid
: cowplot::plot_grid()
graphical output.
list
: list
containing ggplot
objects.
markdown
: R Markdown report, with reports separated by headers.
Michael Steinbaugh
Other Quality Control Functions: barcodeRanksPerSample
,
filterCells
, metrics
,
plotCellCounts
,
plotGenesPerCell
,
plotMitoRatio
,
plotMitoVsCoding
,
plotNovelty
,
plotReadsPerCell
,
plotUMIsPerCell
,
plotZerosVsDepth
1 2 3 4 5 6 7 8 | # bcbioSingleCell ====
plotQC(indrops_small)
# SingleCellExperiment ====
plotQC(cellranger_small)
# seurat ====
plotQC(seurat_small)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.