fetchPlotMeta: Fetching plot metadata of CYT

Description Usage Arguments Value Examples

View source: R/utils.R

Description

Fetching plot metadata of CYT

Usage

1
fetchPlotMeta(object, markers = NULL, verbose = FALSE)

Arguments

object

An CYT object

markers

vector. Makers fetched from expression matrix

verbose

logical. Whether to print calculation progress.

Value

a data.frame containing meta information for visualization

Examples

1
2
3
4
5
6
7
8
cyt.file <- system.file("extdata/cyt.rds", package = "CytoTree")
cyt <- readRDS(file = cyt.file)

plot.data <- fetchPlotMeta(cyt)
head(plot.data)

plot.data <- fetchPlotMeta(cyt, markers = c("CD43", "CD34"))
head(plot.data)

CytoTree documentation built on Nov. 10, 2020, 2 a.m.