Source of file IonTrait.php
Size: 5,197 Bytes - Last Modified: 2019-05-10T12:24:09+01:00
src/Core/Spectra/IonTrait.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
Covered by 2 test(s):
79
Covered by 1 test(s):
80
Covered by 1 test(s):
818283
Covered by 1 test(s):
84
Covered by 1 test(s):
858687888990919293
Covered by 1 test(s):
949596979899100101102103104
Covered by 2 test(s):
105
Covered by 1 test(s):
106
Covered by 1 test(s):
107108109
Covered by 1 test(s):
110
Covered by 1 test(s):
111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
Covered by 1 test(s):
145146147148149
Covered by 1 test(s):
150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
| <?php /** * Copyright 2018 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\ChargedMassTrait; /** * Generic trait for providing ion properties such as mass, charge and intensity * * @todo Add support for Scan/Scan Range * @author Andrew Collins */ trait IonTrait { use ChargedMassTrait; /** * The intensity value of this ion * * @var float */ private $intensity; /** * The retention time window for this object * * @var array */ private $retentionTimeWindow; /** * Sets the monoisotopic neutral mass value for this ion * * @param float $mass * Mass value expressed as a floating point value * @throws \InvalidArgumentException If mass is not a floating point value * @deprecated Use setMonoisotpicMass() */ public function setMass($mass) { $this->setMonoisotopicMass($mass); } /** * Gets the monoisotopic neutral mass value for this ion * * @return float The mass value * @deprecated Use getMonoisotpicMass() */ public function getMass() { return $this->getMonoisotopicMass(); } /** * Sets the intensity value for this ion * * @param float $intensity * The intensity value to set * @throws \InvalidArgumentException If the intensity is not of type float */ public function setIntensity($intensity) { if (! (is_int($intensity) || is_float($intensity))) { throw new \InvalidArgumentException( 'Argument 1 must be of type int or float. Value is of type ' . gettype($intensity)); } $this->intensity = $intensity; } /** * Gets the intensity value for this object * * @return float */ public function getIntensity() { return $this->intensity; } /** * Sets the spectra elements retention time * * @param float $retentionTime * Retention time of fragment */ public function setRetentionTime($retentionTime) { if (! (is_int($retentionTime) || is_float($retentionTime))) { throw new \InvalidArgumentException( 'Argument 1 must be of type int or float. Value is of type ' . gettype($retentionTime)); } $this->retentionTimeWindow = $retentionTime; } /** * Sets the spectra elements retention time or retention time window * * @param float $retentionTimeStart * Retention time of fragment or start of retention time window * @param float $retentionTimeEnd * End of retention time window, or null if equal to start */ public function setRetentionTimeWindow($retentionTimeStart, $retentionTimeEnd) { if (! (is_int($retentionTimeStart) || is_float($retentionTimeStart))) { throw new \InvalidArgumentException( 'Argument 1 must be of type int or float. Value is of type ' . gettype($retentionTimeStart)); } if (! (is_int($retentionTimeEnd) || is_float($retentionTimeEnd))) { throw new \InvalidArgumentException( 'Argument 2 must be of type int or float. Value is of type ' . gettype($retentionTimeEnd)); } $this->retentionTimeWindow = array(); $this->retentionTimeWindow[static::RETENTION_TIME_START] = $retentionTimeStart; $this->retentionTimeWindow[static::RETENTION_TIME_END] = $retentionTimeEnd; } /** * Gets the retention time in seconds, or the average if a window has been set * * @return float */ public function getRetentionTime() { if (is_array($this->retentionTimeWindow)) { return ($this->retentionTimeWindow[static::RETENTION_TIME_START] + $this->retentionTimeWindow[static::RETENTION_TIME_END]) / 2; } return $this->retentionTimeWindow; } /** * Gets the retention time window in seconds * * @return array */ public function getRetentionTimeWindow() { if (is_array($this->retentionTimeWindow)) { return $this->retentionTimeWindow; } return array( $this->retentionTimeWindow, $this->retentionTimeWindow ); } /** * Returns true if the retention time is a window * * @return boolean */ public function hasRetentionTimeWindow() { return is_array($this->retentionTimeWindow); } } |