Learn R Programming

cellGrowth (version 1.16.0)

readYeastGrower: Read Yeast Grower data files

Description

Read raw data file from Yeast Grower software

Usage

readYeastGrower(file)

Arguments

file
filename

Value

a list with entries:
time
a numeric vector of time points
OD
a data.frame vector of measured OD. The colnames are the well names.
read
a numeric vector of read numbers
temperature
a numeric vector of temperatures
header
a character vector: the header of the file

See Also

readGenios

Examples

Run this code
# Get file names
# Parse file
dat = readYeastGrower( system.file("extdata", "Plate1_YPFruc.txt", package="cellGrowth") )

# fit
n <- names( dat$OD)[36]
fit <- fitCellGrowth(x=dat$time,z=log2(dat$OD[[n]]), model = "locfit")
plot(fit)

Run the code above in your browser using DataLab