Skip to content
Snippets Groups Projects
Commit 6f8e9484 authored by Web Admin's avatar Web Admin
Browse files

removed extra ->db in lines getting species and group

parent 1b0dda41
No related branches found
No related tags found
No related merge requests found
......@@ -477,7 +477,7 @@ sub add_ExternalFeatureFactory{
sub get_adaptor {
my ($self, $canonical_name, @other_args) = @_;
return $reg->get_adaptor($self->db->species(),$self->db->group(),$canonical_name);
return $reg->get_adaptor($self->species(),$self->group(),$canonical_name);
}
......
......@@ -62,7 +62,7 @@ sub get_SNPAdaptor {
my $self = shift;
# return $self->_get_adaptor("Bio::EnsEMBL::Lite::SNPAdaptor");
return Bio::EnsEMBL::Registry->get_adaptor($self->db->species(), "lite", "ProxySNP");
return Bio::EnsEMBL::Registry->get_adaptor( $self->species(), "lite", "ProxySNP");
}
......
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