removeCellsByUmap | R Documentation |
This function applies a cutoff in the specified dimension of a given dimension reduction (UMAP, PCA, or t-SNE) to remove cells.
removeCellsByUmap(
reduction = "umap",
umap_dim = 1,
obj = combined.obj,
cutoff = 0,
cut_below = TRUE,
only_plot_cutoff = FALSE,
...
)
reduction |
A string specifying the dimension reduction technique to be used ('umap', 'pca', or 'tsne'). Default: 'umap'. |
umap_dim |
An integer specifying which dimension (axis) to apply the cutoff. Default: 1. |
obj |
A Seurat object. Default: 'combined.obj'. |
cutoff |
A numerical value indicating the cutoff value for the specified dimension. Default: 0. |
cut_below |
A logical value indicating whether to remove cells below (TRUE) or
above (FALSE) the cutoff line. Default: |
only_plot_cutoff |
Simulate and plot cutoff only. |
... |
Any other parameters to be passed to internally called functions. |
A Seurat object with cells removed according to the specified cutoff.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.