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

RFAMParser which loads the registry with EnsEMBL databases

parent 08911acf
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