getCellLines {mixlow} | R Documentation |
Convenience function called on output from prepareData
or
readDataFile
to obtain a vector of cell line names.
getCellLines(data, drugs=NULL, trays=NULL)
data |
A list obtained from prepareData or readDataFile
functions |
drugs |
A vector of drug names. If NULL , cell lines will
not be subset by drugs. |
trays |
A vector of tray names. If NULL , cell lines will
not be subset by trays. |
A data file may contain experimental results for multiple cell lines.
If so, the prepareData
function requires that one of these be
specified for further analysis. Slices of the vector returned from
getCellLines
can be used as an argument to the prepareData
function to subset the data.
A vector of strings indicating which cell lines are contained in the input data object.
John Boik jcboik@stanford.edu
# mixlowData data object is obtained using the prepareData function data("mixlowData") cellLines <- getCellLines(mixlowData)