Source of file PrecursorIon.php
Size: 4,068 Bytes - Last Modified: 2019-05-10T12:24:09+01:00
src/Core/Spectra/PrecursorIon.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
Covered by 1 test(s):
73
Covered by 1 test(s):
747576777879808182
Covered by 1 test(s):
83848586878889909192
Covered by 1 test(s):
93
Covered by 1 test(s):
949596979899100101102
Covered by 1 test(s):
103104105106107108109110111112113114
Covered by 2 test(s):
115
Covered by 1 test(s):
116
Covered by 1 test(s):
117118119
Covered by 1 test(s):
120
Covered by 1 test(s):
121122123124125126127128129
Covered by 1 test(s):
130131132133134135136137138139140
Covered by 2 test(s):
141
Covered by 2 test(s):
142143144145146147148149150
Covered by 2 test(s):
151152153154155156157158
Covered by 1 test(s):
159
Covered by 1 test(s):
160161162163164165166167168169
Covered by 2 test(s):
170
Covered by 2 test(s):
171172173174175176177178179
Covered by 2 test(s):
180181182183184185186187
Covered by 1 test(s):
188
Covered by 1 test(s):
189190
| <?php /** * Copyright 2016 University of Liverpool * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ namespace pgb_liv\php_ms\Core\Spectra; use pgb_liv\php_ms\Core\Identification; /** * Precursor Ion class. * * @author Andrew Collins */ class PrecursorIon implements IonInterface { use IonTrait; /** * The unique identifier for this object * * @var string */ private $identifier; /** * The title for this object * * @var string */ private $title; /** * The scan number for this precursor * * @var int */ private $scan; /** * A list of fragment ions associated with this precursor ion * * @var FragmentIon[] */ private $fragmentIons = array(); /** * A list of identifications associated with precursor ion * * @var Identification[] */ private $identifications; /** * Sets the unique identifier for this object * * @param string $identifier */ public function setIdentifier($identifier) { $this->identifier = $identifier; } /** * Gets the unique identifier for this object * * @return string */ public function getIdentifier() { return $this->identifier; } /** * Sets the title name for this precursor * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * Gets the title name for this precursor * * @return string */ public function getTitle() { return $this->title; } /** * Sets the scan number for this precursor * * @param int|float $scan * Scan number to set * @throws \InvalidArgumentException */ public function setScan($scan) { if (! (is_int($scan) || is_float($scan))) { throw new \InvalidArgumentException( 'Argument 1 must be of type int or float. Value is of type ' . gettype($scan)); } $this->scan = $scan; } /** * Gets the scan number for this precursor * * @return int */ public function getScan() { return $this->scan; } /** * Adds a fragment ion to this precursor * * @param FragmentIon $ion * Fragment ion object to add */ public function addFragmentIon(FragmentIon $ion) { $this->fragmentIons[] = $ion; } /** * Gets the fragment ions for this precursor * * @return FragmentIon[] */ public function getFragmentIons() { return $this->fragmentIons; } /** * Clears the fragment ion list stored by this instance. */ public function clearFragmentIons() { $this->fragmentIons = array(); } /** * Adds an identification to this precursor * * @param Identification $identification * Identification object to add */ public function addIdentification(Identification $identification) { $this->identifications[] = $identification; } /** * Gets the list of identifications for this spectra object * * @return Identification[] */ public function getIdentifications() { return $this->identifications; } /** * Clears the identification list stored by this instance. */ public function clearIdentifications() { $this->identifications = array(); } } |