pgb_liv\php_ms\Core\Identification
Class for spectra identification object, provides storage for assigning a modifiable sequence and scoring.
- Author: Andrew Collins
Synopsis
- // members
- private ModifiableSequenceInterface $sequence;
- private array $scores = ;
- private $ionsMatched;
- private $rank;
- // methods
- public void setPeptide()
- public ModifiableSequenceInterface getPeptide()
- public void setSequence()
- public ModifiableSequenceInterface getSequence()
- public void setScore()
- public array getScores()
- public mixed getScore()
- public void clearScores()
- public void setIonsMatched()
- public int getIonsMatched()
- public void setRank()
- public int getRank()
Coverage
Methods | 100% | 12 / 12 |
Lines | 100% | 23 / 23 |
Violations
Checkstyle
Line | Column | Severity | Message |
---|---|---|---|
159 | 1 | error | Multi-line function call not indented correctly; expected 12 spaces but found 16 |
159 | 101 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
185 | 1 | error | Multi-line function call not indented correctly; expected 12 spaces but found 16 |
185 | 94 | error | Closing parenthesis of a multi-line function call must be on a line by itself |
Members
private
- $ionsMatched
—
int
Number of ions matched from a search result - $rank
—
int
The rank of this identification in a collection - $scores
—
array
Map of identification scores - $sequence
—
pgb_liv\php_ms\Core\ModifiableSequenceInterface
Sequence assigned to this identification
Methods
public
- clearScores() — Clears all scores held by this instance.
- getIonsMatched() — Gets the number of ions matched
- getPeptide() — Gets the peptide associated with this identification
- getRank() — Gets the rank value for this instance
- getScore() — Gets the value for a score identified by the key that was set when setScore was called.
- getScores() — Gets the scores for this identification as an associative array.
- getSequence() — Gets the sequence associated with this identification
- setIonsMatched() — Sets the the number of fragment ions matched
- setPeptide() — Sets the peptide for this identification
- setRank() — Sets the rank for this instance
- setScore() — Sets the score for this identification, a key must be specified that can be used for retreiving the score type later.
- setSequence() — Sets the sequence for this identification
History
-
2018-05-24T12:07:12+01:00 (commit #24d745d)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Moved average and monoisotopic mass methods to trait to provide consistency to objects
-
2017-10-25T11:32:31+01:00 (commit #ccae3f8)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Fixed various documentation and import issues
-
2017-10-23T14:23:49+01:00 (commit #0251ba1)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Added new unit tests
-
2017-10-11T16:30:22+01:00 (commit #445c0af)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Added support for rank in Identification objects Added support for theoretical monoisotopic mass charge for peptide objects
-
2017-06-30T19:52:10+01:00 (commit #3c20d79)
Author: Andrew Collins (detritus@blueyonder.co.uk) / Commiter: Andrew Collins (detritus@blueyonder.co.uk)
Added additional testing Moved sequence mass calculation to trait from peptide. Allows protein mass to be calculated.
-
2017-04-20T12:39:01+01:00 (commit #7923a0d)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Fixed setIonsMatched naming
-
2017-04-19T18:15:41+01:00 (commit #856a8a6)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Updated Peptide/Modification to use methods from CrowdSourcing
-
2017-04-12T18:00:04+01:00 (commit #7965bf5)
Author: detritus (detritus@blueyonder.co.uk) / Commiter: detritus (detritus@blueyonder.co.uk)
Added first pass of MzIdentML reader