Learn R Programming

cellGrowth (version 1.16.0)

wellDataFrame: Create a well data frame

Description

Load a plate layout file and a file specifying the machine runs

Usage

wellDataFrame(plateLayoutFile, machineRunFile)

Arguments

plateLayoutFile
a file containing the plate layout. The file must contain a column named plate and a column named well
machineRunFile
a file containing the machine runs The file must contain columns named directory, filename and plate specifying the directory and filename of the data for the corresponding run. The column use is optional. If present, only rows with use == TRUE are put into the dataframe.

Value

an object of class well and data.frame

Details

See the provided example files for the layout and machine run file formats.

Examples

Run this code
plateLayout <-  system.file("extdata", "plateLayout.txt", package="cellGrowth")
machineRun <-  system.file("extdata", "machineRun.txt", package="cellGrowth")
well <- wellDataFrame(plateLayout,machineRun)
plot(well,plate=1)

Run the code above in your browser using DataLab