Description Usage Arguments Details Value Author(s) Examples
Read a Luminex-Xponent generated csv file
1 | read_Xponent_csv(path)
|
path |
The path to a Luminx csv file |
The format details (eg comma or semicolon delimiter) are infered by the function. There is a known edge-case, for some semicolon-separated files, where some calibration information is misplaced. This is the **only** case where you should mess with the csv file, you should **not mess** with it.
A list of lists with all the information from the file. At the top level there are two lists
BatchHeader that stores all the information before the Results
section as well as the CRC and
AssayData that stores all the information in the Results section
BatchHeader stores data as key-value pairs with keys taken from the first column of the csv file and
values from the rest. Values are mostly character-variables and there are few character vectors.
The only exception is CALInfo with is a list of dataframes containing information about:
Last Calibration in LastCalibration
Classification Calibrator in ClassificationCalibratorExtended
Reporter Calibratorin (you guessed it!) ReporterCalibrator
AssayData stores data as dataframes, except for Run data which is a list of dataframes
(Audit Logs and Warning/Errors). There are 4 dataframes in AssayData:
Exprs Expression data, ie raw data, including Medians, Counts, Net MFI, etc
Average Averages for replicate wells
Well Information about each well (currently only the Dilution Factor)
Bead Information about the beads, eg BeadID
more information about the different data generated can be found here.
Teo Sakel
1 2 3 | ## Read a csv file for a 384 plate
path <- system.file("extdata", "test0_384.csv", package="moach")
lumcsv <- read_Xponent_csv(path)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.