insertSectionData {beadarray} | R Documentation |
A function to modify the sectionData slot of a beadLevelData
object. Data can be be added if it is a data frame with a number of rows equal to the number of sections in the beadLevelData object.
insertSectionData(BLData, what, data)
BLData |
a |
what |
a character string specifiying a name for the new data |
data |
a data frame containing the data we wish to add |
This function allows users to modifiy the per\-section information that is included in the sectionData slot. Typical usage would be to store quality control data that has been computed.
a modified beadLevelData
object with the new data attached to sectionData
Mark Dunning
if(require(beadarrayExampleData)){ data(exampleBLData) qct = makeQCTable(exampleBLData) exampleBLData = insertSectionData(exampleBLData, what="ProbeQC", data = qct) exampleBLData@sectionData }