3 See the NOTICE file distributed with
this work
for additional information
4 regarding copyright ownership.
6 Licensed under the Apache License, Version 2.0 (the
"License");
7 you may not use
this file except in compliance with the License.
8 You may obtain a copy of the License at
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an
"AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License
for the specific language governing permissions and
16 limitations under the License.
23 Please email comments or questions to the
public Ensembl
24 developers list at <http:
26 Questions may also be sent to the Ensembl help desk at
39 Represents an alias
for a marker in the
EnsEMBL database.
45 package Bio::EnsEMBL::Map::MarkerSynonym;
53 Arg [1] : (optional)
int $dbID
54 Arg [2] : (optional)
string $source
55 Arg [3] : (optional)
string $name
66 my ($caller, $dbID, $source, $name) = @_;
68 my $class = ref($caller) || $caller;
70 return bless( {
'dbID' => $dbID,
72 'name' => $name}, $class );
78 Arg [1] : (optional)
int $dbID
79 Example : $mid = $marker_synonym->
dbID;
80 Description: Getter/Setter
for the
internal id of
this synonym
92 $self->{
'dbID'} = shift;
95 return $self->{
'dbID'};
101 Arg [1] : (optional)
string $source
102 Example : $source = $marker_synonym->source;
103 Description: Getter/Setter
for the source of
this marker synonym
115 $self->{
'source'} = shift;
118 return $self->{
'source'};
124 Arg [1] : (optional)
string $name
125 Example : $name = $marker_synonym->name;
126 Description: Getter/Setter
for the name/identifier of
this synonym
138 $self->{
'name'} = shift;
141 return $self->{
'name'}