write_meta: Function to write metadata to object

Description Usage Arguments Value Examples

View source: R/seurat_wrapper.R

Description

Function to write metadata to object

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
write_meta(object, ...)

## S3 method for class 'seurat'
write_meta(object, meta, ...)

## S3 method for class 'Seurat'
write_meta(object, meta, ...)

## S3 method for class 'SingleCellExperiment'
write_meta(object, meta, ...)

Arguments

object

object after tsne or umap projections and clustering

...

additional arguments

meta

new metadata dataframe

Value

object with newly inserted metadata columns

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
obj <- write_meta(
    object = s_small,
    meta = seurat_meta(s_small)
)
obj <- write_meta(
    object = s_small3,
    meta = seurat_meta(s_small3)
)
obj <- write_meta(
    object = sce_small,
    meta = object_data(sce_small, "meta.data")
)

clustifyr documentation built on Nov. 8, 2020, 5:32 p.m.