tread is an R package to extract data from Excel files generated by Tecan Infinite 200 Pro plate readers.
Installation
You can install tread from GitHub with:
# install.packages("devtools")
devtools::install_github("gl-eb/tread")
Development Version
You can also install the development version. While it may contain unreleased features, changes or bugfixes, it is also likely to rapidly evolve, potentially breaking your code. Do not use the development version if you are not willing to deal with this.
devtools::install_github("gl-eb/tread", ref = "develop")
Hot To Use
Examples of analysis workflows are documented in vignette("tread")
# parse your own set of measurements
dat <- tparse("path/to/file.xlsx")
# specify sheet of the excel file (default: 1)
dat <- tparse("path/to/file.xlsx", sheet = 3)
# unite multiple segments of a time series of measurements
dat <- tunite("path/to/file.xlsx")
# specify with which sheets to start and how many to include
dat <- tunite("path/to/file.xlsx", segments = 2, start = 1)