Closed DarioS closed 10 months ago
Eventually, I want to store UMAP of log-norm counts and also after batch effect correction, so it is necessary to name each one.
example_sce <- mockSCE() example_sce <- logNormCounts(example_sce) example_sce <- runPCA(example_sce, name = "PCAlogCounts") example_sce <- runUMAP(example_sce, dimred = "PCAlogCounts", name = "UMAPlogCounts") plotUMAP(example_sce, dimred = "UMAPlogCounts") # dimred isn't gracefully accepted. Error in plotReducedDim(object, ncomponents = ncomponents, dimred = "UMAP", : formal argument "dimred" matched by multiple actual arguments
... Additional arguments to pass to plotReducedDim.
...
plotReducedDim
It should be made clear that ... doesn't accept all of the parameters and why plotReducedDim is needed rather than plotUMAP.
plotUMAP
Eventually, I want to store UMAP of log-norm counts and also after batch effect correction, so it is necessary to name each one.
It should be made clear that
...
doesn't accept all of the parameters and whyplotReducedDim
is needed rather thanplotUMAP
.