readGenios: Read Tecan Genios data files

Description Usage Arguments Value Author(s) See Also Examples

Description

Read raw data file form Tecan Genios instrument

Usage

1

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

Author(s)

Julien Gagneur

See Also

readYeastGrower

Examples

1
2
3
4
5
6
7
8
# 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)

SamGG/cellGrowth documentation built on May 9, 2019, 3:30 a.m.