rowRangesElements {MultiDataSet}R Documentation

Get the name of the datasets that have rowRanges

Description

Get the name of the datasets that have rowRanges

Usage

rowRangesElements(object)

Arguments

object

MultiDataSet

Value

Character vector with the slots that have rowRanges.

Examples

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)

[Package MultiDataSet version 1.10.0 Index]