View source: R/plotBatchVariance.R
plotBatchCorrCompare | R Documentation |
Plot comparison of batch corrected result against original assay
plotBatchCorrCompare(
inSCE,
corrMat,
batch = NULL,
condition = NULL,
origAssay = NULL,
origLogged = NULL,
method = NULL,
matType = NULL
)
inSCE |
SingleCellExperiment inherited object. |
corrMat |
A single character indicating the name of the corrected matrix. |
batch |
A single character. The name of batch annotation column in
|
condition |
A single character. The name of an additional covariate
annotation column in |
origAssay |
A single character indicating what the original assay used for batch correction is. |
origLogged |
Logical scalar indicating whether |
method |
A single character indicating the name of the batch correction method. Only used for the titles of plots. |
matType |
A single character indicating the type of the batch correction
result matrix, choose from |
Four plots will be combined. Two of them are violin/box-plots for percent variance explained by the batch variation, and optionally the covariate, for original and corrected. The other two are UMAPs of the original assay and the correction result matrix. If SCTK batch correction methods are performed in advance, this function will automatically detect necessary input. Otherwise, users can also customize the input. Future improvement might include solution to reduce redundant UMAP calculation.
An object of class "gtable"
, combining four ggplot
s.
Yichen Wang
data("sceBatches")
logcounts(sceBatches) <- log1p(counts(sceBatches))
sceBatches <- runLimmaBC(sceBatches)
plotBatchCorrCompare(sceBatches, "LIMMA", condition = "cell_type")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.