Description Usage Arguments Value Author(s) Examples
View source: R/makeFinalOutput.R
This function creates the final output file of the results which consists of both all filtered pmol species and filtered pmol classes.
1 2 | makeFinalOutput(classPmol_molPctClass, pmolCalculatedDataSet,
userSpecifiedColnames = NULL)
|
classPmol_molPctClass |
compact output file created by using the compactOutput_pmolCalc() script. |
pmolCalculatedDataSet |
data of pmol calculations made by using the pmolCalc() script. |
userSpecifiedColnames |
the column names template file containing user specified column names for the input data. |
a final output file containing pmol and mol
André Vidas Olsen
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # load endo & ISTD databases as well as user specified column names file.
endogene_lipid_db <- read.table(system.file("extdata/dataTables/checks",
"endogene_lipid_db.csv", package = "lipidQ"), stringsAsFactors = FALSE,
header = TRUE, sep = ",")
ISTD_lipid_db <- read.table(system.file("extdata/dataTables/checks",
"ISTD_lipid_db.csv", package = "lipidQ"), stringsAsFactors = FALSE,
header = TRUE, sep = ",")
userSpecifiedColnames <- read.table(system.file("extdata/LipidQ_DataBase",
"userSpecifiedColnames.csv", package = "lipidQ"),
stringsAsFactors = FALSE, header = TRUE, sep = ",")
# load pmolCalculatedDataSet.csv made by using the pmolCalc() function
pmolCalculatedDataSet <- read.table(system.file("extdata/dataTables/checks",
"pmolCalculatedDataSet.csv", package = "lipidQ"),
stringsAsFactors = FALSE, header = TRUE, sep = ",")
# make compact output from pmolCalculatedDataSet
classPmol_molPctClass_compact <-
compactOutput_pmolCalc(pmolCalculatedDataSet,
userSpecifiedColnames = userSpecifiedColnames)
# make final outout
finalOutput <- makeFinalOutput(classPmol_molPctClass_compact,
pmolCalculatedDataSet, userSpecifiedColnames = userSpecifiedColnames)
# print mol% final output
finalOutput[[1]]
# print pmol final output
finalOutput[[2]]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.