readYeastGrower: Read Yeast Grower data files

Description Usage Arguments Value Author(s) See Also Examples

View source: R/readYeastGrower.R

Description

Read raw data file from Yeast Grower software

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

readGenios

Examples

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

cellGrowth documentation built on Oct. 31, 2019, 8:38 a.m.