Skip to contents

Exclude non-human cell lines

Usage

excludeNonHumanCells(object, ...)

# S4 method for Cellosaurus
excludeNonHumanCells(object)

Arguments

object

Object.

...

Additional arguments.

Value

Modified object, with non-human cells excluded (removed).

Note

Updated 2023-10-06.

Examples

data(cello)

## Cellosaurus ====
object <- cello
print(dim(object))
#> [1] 10 36
object <- excludeNonHumanCells(object)
print(dim(object))
#> [1] 10 36