rowRangesElements: Get the name of the datasets that have rowRanges

Description Usage Arguments Value Examples

Description

Get the name of the datasets that have rowRanges

Usage

1

Arguments

object

MultiDataSet

Value

Character vector with the slots that have rowRanges.

Examples

1
2
3
4
5
6
7
8
9
multi <- createMultiDataSet()
eset <- new("ExpressionSet", exprs = matrix(runif(10), 5))
eset2 <- new("ExpressionSet", exprs = matrix(runif(8), ncol = 2))
fData(eset2) <- data.frame(chromosome = c("chr1", "chr1", "chr1", "chr1"), 
                          start = c(1, 14, 25, 104),end = c(11, 16, 28, 115),
                          stringsAsFactors = FALSE)
multi <- add_eset(multi, eset, "exampledata", GRanges = NA)
multi <- add_genexp(multi, eset2)
rowRangesElements(multi)

MultiDataSet documentation built on Jan. 31, 2021, 2:01 a.m.