Skip to content
Snippets Groups Projects
Commit cae216e2 authored by Ian Longden's avatar Ian Longden
Browse files

get_all_DBAdaptors returns an array, so deal with it as such

parent 3f5300f8
No related branches found
No related tags found
No related merge requests found
......@@ -404,7 +404,7 @@ sub get_all_homologous_Genes{
# TODO: Find a robust way of retrieving compara dba directly.
# For now look through all DBAs
my $compara_dba;
foreach my $dba( Bio::EnsEMBL::Registry->get_all_DBAdaptors ){
foreach my $dba( @{Bio::EnsEMBL::Registry->get_all_DBAdaptors} ){
if( $dba->isa('Bio::EnsEMBL::Compara::DBSQL::DBAdaptor') ){
$compara_dba = $dba;
last;
......
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