ensembl-hive  2.7.0
homo_sapiens.pm
Go to the documentation of this file.
1 =head1 LICENSE
2 
3 See the NOTICE file distributed with this work for additional information
4 regarding copyright ownership.
5 
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
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
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.
17 
18 =cut
19 
20 package XrefMapper::homo_sapiens;
21 
24 use strict;
25 use vars '@ISA';
26 
27 @ISA = qw{ XrefMapper::BasicMapper };
28 
29 
30 sub get_official_name{
31  return "HGNC";
32 }
33 
34 # Not running transcript_names_from_gene for merged species
35 # as this is already been done in the OfficialNaming mapper
36 sub transcript_names_from_gene {
37  return;
38 }
39 
40 
41 sub set_display_xrefs{
42  my $self = shift;
43  my $display = XrefMapper::DisplayXrefs->new($self);
44  $display->set_display_xrefs_from_stable_table();
45 
46 }
47 
48 sub set_gene_descriptions(){
49  my $self = shift;
50  my $display = XrefMapper::DisplayXrefs->new($self);
51  $display->set_gene_descriptions_from_display_xref()
52 }
53 
54 
55 1;
XrefMapper::BasicMapper
Definition: BasicMapper.pm:8
XrefMapper::SubmitMapper
Definition: SubmitMapper.pm:8
XrefMapper::DisplayXrefs
Definition: DisplayXrefs.pm:7
XrefMapper::DisplayXrefs::new
public new()