fetchPeptidesInfo2 | R Documentation |
Return a scores, pvalues, and qvalues for all peptides from the osw file.
fetchPeptidesInfo2(oswName, runType, context, runID)
oswName |
(char) path to the osw file. |
runType |
(char) This must be one of the strings "DIA_Proteomics", "DIA_IPF", "DIA_Metabolomics". |
context |
(string) Context used in pyprophet peptide. Must be either "run-specific", "experiment-wide", or "global". |
(dataframe) with following columns:
peptide_id |
(integer) a unique id for each precursor. |
run |
(character) as in SCORE_PEPTIDE.RUN_ID of osw files. |
score |
(numeric) as in SCORE_PEPTIDE.SCORE of osw files. |
pvalue |
(numeric) as in SCORE_PEPTIDE.PVALUE of osw files. |
qvalue |
(numeric) as in SCORE_PEPTIDE.QVALUE of osw files. |
Shubham Gupta, shubh.gupta@mail.utoronto.ca
ORCID: 0000-0003-3500-8152
License: (c) Author (2020) + GPL-3 Date: 2020-11-18
getPeptideQuery, getPeptideScores
dataPath <- system.file("extdata", package = "DIAlignR")
fileInfo <- getRunNames(dataPath = dataPath)
oswName <- fileInfo[["featureFile"]][1]
## Not run:
precursorsInfo <- fetchPeptidesInfo(fileInfo, runType = "DIA_Proteomics", context = "experiment-wide")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.