subsetDim: Get dimensions of subsets in ExperimentSubset objects

Description Usage Arguments Value Examples

Description

Retrieves the dimensions of the specified subset in an ExperimentSubset object.

Usage

1
2
3
4
subsetDim(object, subsetName)

## S4 method for signature 'ExperimentSubset,character'
subsetDim(object, subsetName)

Arguments

object

ExperimentSubset Input ExperimentSubset object.

subsetName

character(1) Name of the subset to retrieve the dimensions from.

Value

A vector containing the dimensions of the specified subset i.e. the number of rows and the number of columns in the subset.

Examples

1
2
3
4
5
6
7
8
data(sce_chcl, package = "scds")
es <- ExperimentSubset(sce_chcl)
es <- createSubset(es,
"subset1",
rows = c(10,11,50,56,98,99,102,105,109, 200),
cols = c(20,21,40,45,90,99,100,123,166,299),
parentAssay = "counts")
subsetDim(es, "subset1")

ExperimentSubset documentation built on Nov. 8, 2020, 5:03 p.m.