readGenios {cellGrowth} | R Documentation |
Read raw data file form Tecan Genios instrument
readGenios(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 = readGenios( system.file("extdata", "tecan_genios.txt", package="cellGrowth") ) # fit n <- names( dat$OD)[36] fit <- fitCellGrowth(x=dat$time,z=log2(dat$OD[[n]]), model = "locfit",locfit.h=6*60*60) plot(fit)