Skip to contents

Extract relevant data from a raw data export file generated with the "Gen5" or "Gen6" software.

Usage

parse_Gen5Gen6(input)

Arguments

input

A dataframe created by reading a table file with read_file

Value

a list of length two containing growth and/or fluorescence dataframes in the first and second element, respectively. The first column in these dataframes represents a time vector.

Examples

if(interactive()){
input <- read_file(filename = system.file("fluorescence_test_Gen5.xlsx", package = "QurvE") )
parsed <- parse_Gen5Gen6(input)
}