Description Usage Arguments Details Methods (by generic) Slots Objects from the class References See Also
This class stores all parsed information from mzIdentML files
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | ## S4 method for signature 'mzID'
show(object)
## S4 method for signature 'mzID'
length(x)
## S4 method for signature 'mzID'
removeDecoy(object)
## S4 method for signature 'mzID'
database(object, safeNames = TRUE)
## S4 method for signature 'mzID'
evidence(object, safeNames = TRUE)
## S4 method for signature 'mzID'
parameters(object)
## S4 method for signature 'mzID'
software(object)
## S4 method for signature 'mzID'
files(object)
## S4 method for signature 'mzID'
peptides(object, safeNames = TRUE)
## S4 method for signature 'mzID'
modifications(object)
## S4 method for signature 'mzID'
id(object, safeNames = TRUE)
## S4 method for signature 'mzID'
scans(object, safeNames = TRUE)
## S4 method for signature 'mzID'
idScanMap(object)
## S4 method for signature 'mzID'
c(x, y, ..., recursive = FALSE)
|
object |
An mzID object |
x |
An mzID object |
safeNames |
Should column names be lowercased to ensure compatibility between v1.0 and v1.1 files? |
y |
An mzID or mzIDCollection object |
... |
ignored |
recursive |
ignored |
The mzID class stores information in a subset of classes, each class having its own slot. While these classes should not need to be accessed directly, descriptions of their content is delegated to each respective class.
show
: Short summary of object content
length
: Get number of psm' in object
removeDecoy
: Remove decoys from mzID object
database
: Get the database used for searching
evidence
: Get the evidence from the peptide search
parameters
: Get the parameters used for the search
software
: Get the software used to arrive at the results
files
: Get the data files used for the analysis
peptides
: Get the peptides identified.
modifications
: Get the modification on the identified peptides
id
: Get the identification results
scans
: Get the scans matched to peptides
idScanMap
: Get the link between scans and identifications
c
: Combine mzID and mzIDCollection objects
parameters
An instance of mzIDparameters-class
. This
object contains all information related to how the analysis was carried out.
psm
An instance of mzIDpsm-class
. This object contains
the meat of the analysis with all scans and their related PSMs recorded.
peptides
An instance of mzIDpeptides-class
. This object
contains a library of all peptides generated from the database along with
possible modifications.
evidence
An instance of mzIDevidence-class
. This object
lists all peptides detected in the analysis with reference to the
mzIDpeptides
instance.
database
An instance of mzIDdatabase-class
. This object
contains information on the proteins in the database. As the full database is
not recorded in mzIdentML files the actual protein sequence is not recorded
but there is sufficient information to retrieve it from the database file.
Objects can be created using the mzID
constructor, which
handles parsing of mzIdentML files
http://www.psidev.info/mzidentml
Other mzID.classes: mzIDCollection-class
,
mzIDdatabase-class
,
mzIDevidence-class
,
mzIDparameters-class
,
mzIDpeptides-class
,
mzIDpsm-class
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.