| readYeastGrower {cellGrowth} | R Documentation |
Read raw data file from Yeast Grower software
readYeastGrower(file)
file |
filename |
a list with entries:
time |
a |
OD |
a |
read |
a |
temperature |
a |
header |
a |
Julien Gagneur
# 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)