Source of file ProteinEntry.php
Size: 3,018 Bytes - Last Modified: 2017-10-12T11:54:48+01:00
src/Core/ProteinEntry/ProteinEntry.php
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
Covered by 14 test(s):
60
Covered by 14 test(s):
616263646566676869
Covered by 1 test(s):
7071727374757677787980
Covered by 4 test(s):
81
Covered by 1 test(s):
82
Covered by 1 test(s):
838485
Covered by 3 test(s):
86
Covered by 3 test(s):
878889909192939495
Covered by 2 test(s):
96979899100101102103104105106
Covered by 2 test(s):
107
Covered by 1 test(s):
108
Covered by 1 test(s):
109110111
Covered by 1 test(s):
112
Covered by 1 test(s):
113114115116117118119120121
Covered by 1 test(s):
122123124
| <?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\ProteinEntry; use pgb_liv\php_ms\Core\Protein; /** * A protein entity object for adding references to a protein object. * Allows items such as peptides to link to specific sections of a protein string * * @author Andrew Collins */ class ProteinEntry { /** * The protein object to link * * @var Protein */ private $protein; /** * The start position of object to sequence * * @var int */ private $start; /** * The end position of object to sequence * * @var int */ private $end; /** * Creates a new ProteinEntity object with the specified protein * * @param Protein $protein * The protein object that will be referenced by the user of this instance */ public function __construct(Protein $protein) { $this->protein = $protein; } /** * Gets the encapsulated protein * * @return Protein */ public function getProtein() { return $this->protein; } /** * Sets the start position of the parent object inside the protein * * @param int $position * @throws \InvalidArgumentException If argument is non-integer */ public function setStart($position) { if (! is_int($position)) { throw new \InvalidArgumentException( 'Argument 1 must be of type integer. Argument type is ' . gettype($position)); } $this->start = $position; } /** * Gets the start position of the parent object inside the protein * * @return int */ public function getStart() { return $this->start; } /** * Sets the end position of the parent object inside the protein * * @param int $position * @throws \InvalidArgumentException If argument is non-integer */ public function setEnd($position) { if (! is_int($position)) { throw new \InvalidArgumentException( 'Argument 1 must be of type integer. Argument type is ' . gettype($position)); } $this->end = $position; } /** * Gets the end position of the parent object inside the protein * * @return int */ public function getEnd() { return $this->end; } } |