process_seurat | R Documentation |
Process a Seurat object
process_seurat(
sobject,
verbose = FALSE,
run_umap_dims = 1:30,
assay = "RNA",
resolution = 0.3,
reduction = "pca",
graph_name = "RNA_snn",
neighbor_k_param = 30,
umap_n_neighbors = 30L,
umap_metric = "euclidean"
)
sobject |
A Seurat object |
verbose |
Controls verbosity |
run_umap_dims |
Number of PCA dimensions to use in RunUMAP() and FindNeighbors() |
assay |
Assay to pull data for when using |
resolution |
Value of the resolution parameter, use a value above (below) 1.0 if you want to obtain a larger (smaller) number of communities. |
reduction |
Which dimensional reduction (PCA or ICA) to use for the UMAP input. Default is PCA |
graph_name |
Name of graph to use for the clustering algorithm in FindClusters() |
neighbor_k_param |
Number of neighbors (k.param) to use in FindNeighbors() |
umap_n_neighbors |
Number of neighbors (n.neighbors) to use in RunUMAP() |
umap_metric |
Metric (metric) to use in RunUMAP() |
A Seurat object
## Not run:
test <- process_seurat(pbmc_small)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.