## Class for storing bead-level data
setClass("beadLevelData",
representation(beadData = "list",
sectionData = "list",
experimentData = "list",
history = "character"))
## The previous class for storing bead-level data, now deprecated.
## Maintained so previously saved objects can be converted to the new structure
setClass("BeadLevelList",
representation(beadData = "list",
arrayInfo = "list",
phenoData = "AnnotatedDataFrame",
annotation="character"))
setClass("illuminaChannel",
representation(transFun ="list",outlierFun="list", exprFun="list", varFun = "list",name="character"),
)
setClass("ExpressionSetIllumina",
representation(QC = "AnnotatedDataFrame", channelData="list",deResults = "AssayData",SampleGroup="character"),
contains="eSet"
)
setClass("beadRegistrationData",
representation(
layout = "list",
registrationData = "list",
coordinateData = "list",
cornerData = "list",
p95 = "numeric",
imageLocations = "character",
metrics = "data.frame")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.