View source: R/Seurat.Utils.Visualization.R
plotQUMAPsInAFolder | R Documentation |
This function plots qUMAPs for a specified set of genes, storing the results in a specified folder. If no folder name is provided, it defaults to using the gene set name.
plotQUMAPsInAFolder(
genes,
obj = combined.obj,
foldername = NULL,
intersectionAssay = DefaultAssay(obj),
plot.reduction = "umap",
...
)
genes |
A vector of gene names to be plotted. |
obj |
An object containing the UMAP and gene data. Default: combined.obj. |
foldername |
The name of the folder where the plots will be saved. If NULL, the gene set name is used. Default: NULL. |
intersectionAssay |
The assay slot to use for intersection. Default: 'RNA'. |
plot.reduction |
The type of reduction to plot. Default: 'umap'. |
... |
Additional arguments passed to plotting and directory creation functions. |
Invisible. The function generates plots and saves them in the specified folder.
plotQUMAPsInAFolder(
genes = c("Gene1", "Gene2"), obj = combined.obj,
foldername = "MyGenePlots", intersectionAssay = "RNA",
plot.reduction = "umap"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.