Source of file Peptide.php
Size: 4,285 Bytes - Last Modified: 2019-05-10T12:24:09+01:00
src/Core/Peptide.php
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
Covered by 2 test(s):
84
Covered by 1 test(s):
85
Covered by 1 test(s):
86
Covered by 2 test(s):
87888990
Covered by 2 test(s):
91
Covered by 1 test(s):
92
Covered by 1 test(s):
939495
Covered by 1 test(s):
96
Covered by 1 test(s):
979899100
Covered by 1 test(s):
101102103104105106
Covered by 1 test(s):
107
Covered by 1 test(s):
108109
Covered by 1 test(s):
110
Covered by 1 test(s):
111
Covered by 1 test(s):
112
Covered by 1 test(s):
113114115116117118119120121
Covered by 1 test(s):
122123124
Covered by 1 test(s):
125
Covered by 1 test(s):
126
Covered by 1 test(s):
127
Covered by 1 test(s):
128129
Covered by 1 test(s):
130131
Covered by 1 test(s):
132
Covered by 1 test(s):
133134
Covered by 1 test(s):
135
Covered by 1 test(s):
136137
Covered by 1 test(s):
138
Covered by 1 test(s):
139
Covered by 1 test(s):
140141
Covered by 1 test(s):
142143144145
Covered by 1 test(s):
146
Covered by 1 test(s):
147
Covered by 1 test(s):
148149150
Covered by 1 test(s):
151
Covered by 1 test(s):
152153154
Covered by 1 test(s):
155156
Covered by 1 test(s):
157
Covered by 1 test(s):
158
Covered by 1 test(s):
159
Covered by 1 test(s):
160161162
Covered by 1 test(s):
163164
Covered by 1 test(s):
165
Covered by 1 test(s):
166
Covered by 1 test(s):
167
Covered by 1 test(s):
168169
Covered by 1 test(s):
170171172
| <?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; use pgb_liv\php_ms\Constant\ChemicalConstants; use pgb_liv\php_ms\Constant\PhysicalConstants; /** * A peptide object that encapsulates a modifiable sequence and provides additional properties * * @author Andrew Collins */ class Peptide implements ModifiableSequenceInterface { use ModifiableSequenceTrait, ProteinTrait; const AMINO_ACID_X_MASS = 0; const AMINO_ACID_B_MASS = 0; const AMINO_ACID_Z_MASS = 0; /** * * @deprecated Use ChemicalConstants * @var float */ const HYDROGEN_MASS = ChemicalConstants::HYDROGEN_MASS; /** * * @deprecated Use ChemicalConstants * @var float */ const OXYGEN_MASS = ChemicalConstants::OXYGEN_MASS; /** * * @deprecated Use ChemicalConstants * @var float */ const NITROGEN_MASS = ChemicalConstants::NITROGEN_MASS; /** * * @deprecated Use PhysicalConstants * @var float */ const PROTON_MASS = PhysicalConstants::PROTON_MASS; /** * * @deprecated Use ChemicalConstants::HYDROGEN_MASS * @var float */ const N_TERM_MASS = 1.007875; /** * * @deprecated Use ChemicalConstants::HYDROGEN_MASS+ChemicalConstants::OXYGEN_MASS * @var float */ const C_TERM_MASS = 17.00278; private $missedCleavageCount; public function __construct($sequence = null) { if (! is_null($sequence)) { $this->setSequence($sequence); } } public function setMissedCleavageCount($count) { if (! is_int($count)) { throw new \InvalidArgumentException( 'Argument 1 must be of type integer. Argument type is ' . gettype($count)); } $this->missedCleavageCount = $count; } public function getMissedCleavageCount() { return $this->missedCleavageCount; } public function __clone() { // Create new instances of objects $oldMods = $this->modifications; $this->modifications = array(); foreach ($oldMods as $modification) { $this->modifications[] = clone $modification; } } /** * Gets the molecular formula for this peptide string. * * @return string Molecular formula */ public function getMolecularFormula() { $acids = str_split($this->getSequence(), 1); $frequency = array( 'C' => 0, 'H' => 0, 'N' => 0, 'O' => 0, 'S' => 0 ); foreach ($acids as $acid) { $composition = AminoAcidComposition::getFormula($acid); $matches = array(); preg_match_all('/([A-Z][a-z]?)([0-9]*)/', $composition, $matches, PREG_SET_ORDER); foreach ($matches as $match) { $chemical = $match[1]; $count = $match[2]; if (! isset($frequency[$chemical])) { $frequency[$chemical] = 0; } $frequency[$chemical] += $count == '' ? 1 : $count; } } // Remove hydrogen and oxygen from C-TERM $frequency['H'] -= count($acids) - 1; $frequency['O'] -= count($acids) - 1; // Remove hydrogen from N-TERM. $frequency['H'] -= count($acids) - 1; $formula = ''; foreach ($frequency as $chemical => $count) { if ($count == 0) { continue; } $formula .= $chemical; if ($count > 1) { $formula .= $count; } } return $formula; } } |