importCDS: Import a seurat or scatter/scran CellDataSet object and...

Description Usage Arguments Value Examples

View source: R/cds_conversion.R

Description

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.

Usage

1
importCDS(otherCDS, import_all = FALSE)

Arguments

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).

Value

a new monocle cell dataset object converted from other objects (Scatter or Seurat).

Examples

 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)

monocle documentation built on Nov. 8, 2020, 5:06 p.m.