buildCellHTS2 {cellHTS2} | R Documentation |
Builds a cellHTS2 object from a data frame.
buildCellHTS2(xd, measurementNames)
xd |
a data frame containing the columns |
measurementNames |
an optional character vector containing
the measurement names. If missing, the names of the measurement
columns in |
The function uses readPlateList
to build a cellHTS2
object.
An object of class cellHTS
, which extends the
class NChannelSet
.
Gregoire Pau gregoire.pau@embl.de
Boutros, M., Bras, L.P. and Huber, W. (2006) Analysis of cell-based RNAi screens, Genome Biology 7, R66.
wells = sprintf("%s%02d", rep(LETTERS[1:8], each=12), 1:12) xd = expand.grid(plate=1:3, replicate=1:2, well=wells) xd$cell.number = rnorm(nrow(xd)) xd$cell.size = rnorm(nrow(xd)) x = buildCellHTS2(xd)