createES: Create ExpressionSet.

Description Usage Arguments Value Examples

View source: R/createES.R

Description

createES function produces an ExpressionSet object from given data, and exports it to global scope.

Usage

1
createES(data, pData, varLabels, fData, fvarLabels, eData)

Arguments

data

Gene expression matrix.

pData

Matrix with phenotypical data.

varLabels

Names of phenoData columns.

fData

Matrix with feature data.

fvarLabels

Names of featureData columns.

eData

List with experimentData

Value

produced ExpressionSet object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
data <- matrix(1:15, 5, 3)
pData <- c("A", "B", "C")
varLabels <- "cat"
fData <- c("p", "r", "s", "t", "u")
fvarLabels <- "id"
eData <- list(name="", lab="", contact="", title="", url="", other=list(), pubMedIds="")
createES(data, pData, varLabels, fData, fvarLabels, eData)

## End(Not run)

phantasus documentation built on Nov. 8, 2020, 6:39 p.m.