Description Usage Arguments Details Value Examples
View source: R/Seurat_to_cds.R
Converts Seurat object to preprocessed cds.
1 2 3 4 5 6 7 8 | seurat_to_cds(
seurat,
assay = "SCT",
preprocess = TRUE,
dims = 50,
norm = "none",
import_umap = TRUE
)
|
seurat |
The Seurat object to be converted. |
assay |
Assay within the Seurat object to be imported. |
preprocess |
Determines whether the new cds will be preprocessed. Default is TRUE. |
dims |
Number of principal components returned after preprocessing. |
norm |
Normalization method used in preprocess_cds. Default is "none". |
import_umap |
Imports UMAP projection into the cell data set object. Default is TRUE. |
Seurat to cell data set conversion function. This function takes in a Seurat object and returns a cell data set object. Automatically runs PCA on the new cell data set object.
I've only included this to stop warnings from document()
A cell data set (cds) object
1 | new_cds <- seurat_to_cds(Seurat.object, assay = "SCT")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.