Convert Seurat Object to Monocle3 Cell Data Set
seurat_to_monocle3.Rd
Converts a Seurat object into a Monocle3 cell_data_set
object. Optionally, dimensionality reduction embeddings can be transferred.
Usage
seurat_to_monocle3(
seurat_obj,
assay_name = "RNA",
seurat_reduction = "umap",
monocle_reduction = "UMAP"
)
Arguments
- seurat_obj
A Seurat object to convert.
- assay_name
A character string specifying the assay to use from the Seurat object. Default is
"RNA"
.- seurat_reduction
The name of the reduction in Seurat to transfer (e.g.,
"umap"
). UseNULL
to skip transferring reductions. Default is"umap"
.- monocle_reduction
The name to assign to the reduction in the Monocle3 object (e.g.,
"UMAP"
). UseNULL
to skip transferring reductions. Default is"UMAP"
.