Description Usage Arguments Value Examples
View source: R/cds_conversion.R
This function takes a monocle CellDataSet and converts it to another type of object used in another popular single cell analysis toolkit. It currently supports Scran and Seurat packages.
1 |
otherCDS |
the object you would like to convert into a monocle cds |
import_all |
Whether or not to import all the slots in seurat or scatter. Default is FALSE (or only keep minimal dataset). |
a new monocle cell dataset object converted from other objects (Scatter or Seurat).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Not run:
lung <- load_lung()
seurat_lung <- exportCDS(lung)
seurat_lung_all <- exportCDS(lung, export_all = T)
scater_lung <- exportCDS(lung, export_to = 'Scater')
scater_lung_all <- exportCDS(lung, export_to = 'Scater', export_all = T)
importCDS(seurat_lung)
importCDS(seurat_lung, import_all = T)
importCDS(seurat_lung_all)
importCDS(seurat_lung_all, import_all = T)
importCDS(scater_lung)
importCDS(scater_lung, import_all = T)
importCDS(scater_lung_all)
importCDS(scater_lung_all, import_all = T)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.