Skip to content

Instantly share code, notes, and snippets.

@dbolser-ebi
Created April 10, 2017 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbolser-ebi/d289d0f53408922a550b75d4746d935f to your computer and use it in GitHub Desktop.
Save dbolser-ebi/d289d0f53408922a550b75d4746d935f to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use v5.14;
use strict;
use autodie;
use Bio::EnsEMBL::Registry;
Bio::EnsEMBL::Registry->load_registry_from_db(
-host => 'mysql-eg-prod-1.ebi.ac.uk',
-port => '4238',
-user => 'ensro',
);
my $a_aref =
Bio::EnsEMBL::Registry->get_all_adaptors( "zea_mays", "variation" );
say $a_aref;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment