ensembl-hive  2.8.1
aedes_aegypti.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::aedes_aegypti;
21 
23 
24 use vars '@ISA';
25 
26 @ISA = qw{ XrefMapper::BasicMapper };
27 
28 
29 
30 sub set_methods{
31 
32  my $default_method = 'ExonerateGappedBest1';
33  my %override_method_for_source = (
34  ExonerateGappedBest5 => ['RefSeq_mRNA','RefSeq_mRNA_predicted', 'RefSeq_ncRNA', 'RefSeq_ncRNA_predicted' ],
35  );
36 
37  return $default_method, \%override_method_for_source;
38 }
39 
40 
41 
42 #Reverse order: last one has higher priority! <- This comment is wrong (mikkel 12/10/2012)
43 # index [0] has higher priority!
44 sub gene_description_sources {
45  return qw(
46  VB_Community_Annotation
47  Uniprot/SWISSPROT
48  VB_External_Description
49  );
50 }
51 #Old order VB_External_Description Uniprot/SWISSPROT VB_Community_Annotation
52 # only sources in this list are used when setting display_xref_id
53 sub transcript_display_xref_sources {
54  my @list = qw(
55  VB_Community_Annotation
56  Uniprot/SWISSPROT
57  VB_External_Description
58  );
59 #old VB_External_Description Uniprot/SWISSPROT VB_Community_Annotation
60  my %ignore;
61  #$ignore{"EntrezGene"}= 'FROM:RefSeq_[pd][en][pa].*_predicted';
62 
63  return [\@list,\%ignore];
64 
65 }
66 
67 
68 1;
XrefMapper::BasicMapper
Definition: BasicMapper.pm:8