Skip to content
Snippets Groups Projects
Commit 8cc61a1d authored by Kevin Howe's avatar Kevin Howe
Browse files

Override set_methods for WormBase species to allow non-exact matching to Uniprot records

parent df0ab9db
No related branches found
No related tags found
No related merge requests found
......@@ -7,8 +7,23 @@ use vars qw(@ISA);
@ISA = qw(XrefMapper::BasicMapper);
# Abstact superclass, not intended to be created directly. Contains
# common methods for the "tierII" nematodes in WormBase
# This module is activated by specifying "taxon=wormbase" in the mapping input file
# It contains some common config for worms maintained by WormBase (i.e. having genes
# with WBGene ids etc)
sub set_methods{
my $default_method = 'ExonerateGappedBest1';
my %override_method_for_source = (
ExonerateGappedBest5 => ['RefSeq_mRNA',
'RefSeq_mRNA_predicted',
'RefSeq_ncRNA',
'RefSeq_ncRNA_predicted' ],
);
return $default_method, \%override_method_for_source;
}
sub set_display_xrefs {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment