Learn R Programming

beadarray (version 2.22.2)

addFeatureData: Add probe data

Description

Adds extra probe-specific data to an ExpressionSetIllumina object using an installed annotation package

Usage

addFeatureData(data, toAdd = c("SYMBOL", "PROBEQUALITY", "CODINGZONE", "PROBESEQUENCE"), annotation = NULL)

Arguments

data
An ExpressionSetIllumina object
toAdd
Either a pre-prepared data frame, or characters which refer to mappings within an annotation pacakge
annotation
Optional character identifying the annotation of the ExpressionSetIllumina object. e.g. Humanv3, Mousev2.

Value

An ExpressionSetIllumina object with modified featureData

Details

The function will identify which package should be used by concatenating the character string illumina with the value of the annotation slot of the object, or the annotation argument passed in. If this package is not installed on the users computer, then the function will fail.

Assuming the package has been correctly loaded, the character vector toAdd is converted to the names of environments within the package. These environments are then queried with the featureNames of the input object. The result of each query is converted to a data frame and merged with the original feature data of the object.

Alternatively, rather than querying from an annotation pacakge, a pre-prepared data frame can be used.

Examples

Run this code

if(require(beadarrayExampleData)){

data(exampleSummaryData)

exampleSummaryData <- addFeatureData(exampleSummaryData)
head(fData(exampleSummaryData))
}

Run the code above in your browser using DataLab