Description Usage Arguments Value Examples
View source: R/qPCRFileTransformation.R
Function formats raw qPCR fluoresence file data from MIC, StepOnePlus or Biomeme two3/Franklin machines into table that includes well location names and fluorescence data for each reaction cycle. The table is written to the local machine directory as a CSV file. The formatted data can be copied and pasted into the results_Table or standardCurveResults_Table, which are used in the MDMAPR 2.0 MySQL database.
1 | formatRawFluorescenceFile(rawFluorescenceFile, platform, outputFileName)
|
rawFluorescenceFile |
defines raw qPCR fluorescence file to read in. |
platform |
defines platform fluorescence file was generated from. |
outputFileName |
defines output name for CSV file that data will be written to. |
Writes CSV file to local directory.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
formatRawFluorescenceFile("rawFluorescenceFile.xlsx",
"StepOnePlus",
"formatted_SOP_fluorescence.csv")
formatRawFluorescenceFile("rawFluorescenceFile.csv",
"MIC",
"formatted_MIC_fluorescence.csv")
formatRawFluorescenceFile("rawFluorescenceFile.csv",
"Biomeme two3/Franklin",
"formatted_Biomeme_fluorescence.csv")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.