Description Usage Arguments Examples
Extract UMAP embedding from a Suerat object and write to file as csv By defult, writes two files, umap_embeddings.csv and clusters.csv for use in Loupe browser By default, drops a cell ID that is prefixed the cell barcode
1 2 3 4 5 6 7 | export_umap(
srt = srt,
embeddings_file = "umap_embeddings.csv",
cluster_id_file = "clusters.csv",
Idents = NULL,
drop_cell_ids = TRUE
)
|
srt |
A Seurat object |
cluster_id_file |
Name of csv file that containst he cluster IDs |
Idents |
Set the active Ident from Seurat metadata before exporting. Becomes grouping factor in clusters.csv. Default is active Ident. |
drop_cell_ids |
Drop the cell ID prefixed the the cell barcode by Seurat |
umap_embeddings_file |
Name of csv file that contains UMAP embeddings |
1 2 3 4 5 | ## Not run:
export_umap(srt = srt, embeddings_file = "umap_embeddings.csv", cluster_id_file = "clusters.csv",
Idents = NULL, drop_cell_ids = TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.