Skip to content
Snippets Groups Projects
Commit ed1645c7 authored by Monika Komorowska's avatar Monika Komorowska
Browse files

Ensembl version of the RFAMParser is not needed

parent 931f34a4
No related branches found
No related tags found
No related merge requests found
package XrefParser::RFAMParser_E;
#RFAM Parser which loads the registry from the staging servers for EnsEMBL databases.
use strict;
use warnings;
use Carp;
use DBI;
use base qw( XrefParser::BaseParser);
use base qw( XrefParser::RFAMParser);
use Bio::EnsEMBL::Registry;
sub load_registry {
my ($self, $registry) = @_;
$registry->load_registry_from_multiple_dbs(
{
'-host' => 'ens-staging1',
'-user' => 'ensro',
},
{
'-host' => 'ens-staging2',
'-user' => 'ensro',
},
);
return $registry;
}
1;
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