selectCells | R Documentation |
Select cells
selectCells(object, ...)
## S4 method for signature 'Cellosaurus'
selectCells(object, ...)
object |
Object. |
... |
Named key value pairs that map to cell line metadata defined in |
Only exact matching is currently supported.
Modified object, subset to only contain matching cell lines.
"category"
"isCancer"
"isContaminated"
"isProblematic"
"ncbiTaxonomyId"
"ncitDiseaseId"
"ncitDiseaseName"
"oncotreeCode"
"oncotreeMainType"
"oncotreeName"
"oncotreeTissue"
"organism"
"sexOfCell"
Updated 2023-09-12.
Cellosaurus package.
DepMapAnalysis package.
data(cello)
## Cellosaurus ====
object <- cello
print(dim(object))
subset <- selectCells(
object = object,
category = "Cancer cell line",
organism = "Homo sapiens",
sexOfCell = "Female"
)
print(dim(subset))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.