Areas under each peptide peak that can be used downstream for quantitation.
See quantitate
for protein quantitation.
make_area_table(msf_file, min_conf = "High",
prot_regex = "^>([a-zA-Z0-9._]+)\\b", collapse = TRUE)
A file path to a ThermoFisher MSF file.
"High", "Medium", or "Low". The minimum peptide confidence level to retrieve from MSF file.
Regular expression where the first group matches a protein name or ID from the protein description. Regex must contain ONE group. The protein description is typically generated from a fasta reference file that was used for the database search.
If TRUE, peptides that match to multiple protein sequences are collapsed into a single row with multiple protein descriptions and protein IDs in the Proteins
and ProteinID
columns separated by semi-colons (";").
A data frame containing peptide areas for peptides at or above the minimum confidence level.
a unique peptide ID
a unique spectrum ID
protein description from reference database used to assign peptides to protein groups, parsed according to prot_regex
amino acid sequence (does not show post-translational modifications)
area under peptide peak
peptide mass
mass-to-charge ratio
peptide charge
peak intensity; useful if no area is available
first scan in which peptide appears
# NOT RUN {
make_area_table(parsemsf_example("test_db.msf"))
# }
Run the code above in your browser using DataLab