Description Usage Arguments Value Examples
The function takes the output of CleanUpChromatograms as input and for each transition pair of each peptide, calculates a number of QC metrics that are used as features for training a predictive peak QC model.
1 2 3 4 |
data |
A dataframe that contains identifier columns and peak groups of class peakObj for each transition peak. This dataframe is the output of CleanUpChromatograms (output$data). |
parallel |
Logical parameter to determine whether the function should run in parallel. This feature has not been implemented yet. Set parallel = FALSE. |
blanks |
A dataframe with two columns of File and FileName. The FileName column contains the names of blank runs for each Skyline File in the File column. The values in File and FileName should be consistent with corresponding columns in input data. Example: If Skyline document "SkylineFile1" includes three blank runs of "Blank1", "Blank2" and "Blank3", blanks <- data.frame(File = "SkylineFile1", FileName = c("Blank1","Blank2","Blank3")). The function uses the blank runs to estimate the peak intensity at LLOQ for each pepide and transition. If blanks = NA, the function uses the intensity.threshold by default as approximation of intensity at LLOQ for all peaks. This threshold can be adjusted. |
intensity.threshold |
The threshold that the function uses as an approximation of the intensity at LLOQ for all peptides. If blank samples are not provided to estimate the intensity at LLOQ, this value is used as an approximation to determine transition peaks that are below limit of quantitation. |
endogenous.label |
Label of the endogenous analyte: default is "light" |
standard.label |
Label of the spiked-in isotopically labeled analyte: default is "heavy" |
export.features |
Logical parameter to indicate whether calculated features should be exported as a .csv file. |
feature.path |
Path to the directory, where the features should be saved if export.features = TRUE. |
A list with the following objects: features: A dataframe with columns that contain the calculated QC features for each transition pair in the input data.
1 2 3 | data.features <- ExtractFeatures(data = data.CSF$data,
export.features = FALSE,
intensity.threshold = 1000)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.