Learn R Programming

MultiDataSet (version 1.0.2)

add_rnaseq: Method to add an expression RNA seq dataset to MultiDataSet.

Description

This method adds or overwrites the slot "rnaseq" of an MultiDataSet with the content of the given ExpressionSet.

Usage

add_rnaseq(object, rnaSet, ...)

Arguments

object
MultiDataSet that will be filled.
rnaSet
ExpressionSet to be used to fill the slot.
...
Arguments to be passed to add_eset.

Value

A new MultiDataSet with the slot "rnaseq" filled.

Examples

Run this code
multi <- createMultiDataSet()
eset <- new("ExpressionSet", exprs = matrix(runif(4), 2))
fData(eset) <- data.frame(chromosome = c("chr1", "chr2"), start = c(12414, 1234321),
 end = c(121241, 12122414), stringsAsFactors = FALSE)
multi <- add_genexp(multi, eset)

Run the code above in your browser using DataLab