Description Usage Arguments Details Value Author(s) Examples
The pepXML2tab() function generates a data frame from a pepXML file.
1 | pepXML2tab(pepxml, ...)
|
pepxml |
a character contains the path and name of a pepXML file |
... |
additional arguments |
Read peptide identification from pepXML file into an data frame object.
a data frame object, each row represent a PSM (peptide spectrum match) from the pepXML file
Xiaojing Wang
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## MyriMatch example
pepxml <- system.file("extdata/pepxml", "Myrimatch.pepXML",
package="pepXMLTab")
tttt <- pepXML2tab(pepxml)
## Mascot example
pepxml <- system.file("extdata/pepxml", "Mascot.pepXML",
package="pepXMLTab")
tttt <- pepXML2tab(pepxml)
## SEQUEST example
pepxml <- system.file("extdata/pepxml", "SEQUEST.pepXML",
package="pepXMLTab")
tttt <- pepXML2tab(pepxml)
## XTandem example
pepxml <- system.file("extdata/pepxml", "XTandem.pepXML",
package="pepXMLTab")
tttt <- pepXML2tab(pepxml)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.