Description Usage Arguments Details Value Examples
See https://omics.pnl.gov/software/ms-gf for more info on how to perform a database search on MSMS dataset with MS-GF+ and how to generate a mzID file. Note that most functions in these package require data from a competitive target decoy search.
1 | parse_msgf_mzid(mzid_path)
|
mzid_path |
Location of the mzID file. |
We take the MS-GF+ SpecEValue as the PSM score for FDR calculation.
A data frame containing the following 7 columns:
Id of the spectrum from the searched dataset file.
Amino acid sequence matching the spectra.
Id of the sequence from the database file.
score assigned to the peptide to spectrum match (PSM).
Name of the database file used to search the spectra.
TRUE if decoy PSM, FALSE otherwise.
Number of sequences in the database file.
1 2 3 4 5 6 7 8 | ## Location of the zipped data files
zip_file_path = system.file("extdata", "extdata.zip", package = "saas")
## Unzip and get the (temporary) location of the mzid file with the MS-GF+ search results from a
## competitive target decoy search of the complete pyrococcus proteome against a pyrococcus dataset.
mzid_file_path = unzip(zip_file_path, 'pyrococcus.mzid',exdir = tempdir())
## Parse the mzid file
parse_msgf_mzid(mzid_file_path)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.