fetchCell: Fetching cellls of CYT

Description Usage Arguments Value Examples

View source: R/utils.R

Description

Fetching cellls of CYT

Usage

1
fetchCell(object, logical.connect = "or", verbose = FALSE, ...)

Arguments

object

An CYT object

logical.connect

character. "and" or "or"

verbose

logical. Whether to print calculation progress.

...

Paramters to pass to limitation

Value

a vector containing cell names

Examples

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

cell.fetch <- fetchCell(cyt, traj.value.log = 0.01)
cell.fetch <- fetchCell(cyt, stage = c("D0", "D10"))
cell.fetch <- fetchCell(cyt, stage = c("D0", "D10"), traj.value.log = 0.01,
                        logical.connect = "or")

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