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

update

parent eff60462
No related branches found
No related tags found
No related merge requests found
use strict;
BEGIN {
my $ensembl_root = '/ensweb/wwwdev/server';
unshift @INC, "$ensembl_root/modules";
unshift @INC, "$ensembl_root/ensembl-draw/modules";
unshift @INC, "$ensembl_root/ensembl/modules";
unshift @INC, "$ensembl_root/ensembl-external/modules";
unshift @INC, "$ensembl_root/ensembl-map/modules";
unshift @INC, "$ensembl_root/ensembl-compara/modules";
unshift @INC, "$ensembl_root/conf";
unshift @INC, "$ensembl_root/bioperl-live";
}
use Bio::EnsEMBL::DBSQL::DBAdaptor;
use Bio::EnsEMBL::Attribute;
my $host = 'ecs1g';
my $user = 'ensadmin';
my $pass = 'ensembl';
my $dbname = 'homo_sapiens_core_20_34';
my $host = 'localhost';
my $user = 'ensadmin';
my $pass = 'ensembl';
my $dbname = 'mcvicker_homo_sapiens_core_20_34b';
my $port = '3306';
my $db = new Bio::EnsEMBL::DBSQL::DBAdaptor(-host => $host,
......@@ -16,7 +27,6 @@ my $db = new Bio::EnsEMBL::DBSQL::DBAdaptor(-host => $host,
-pass => $pass,
-dbname => $dbname);
my $slice_adaptor = $db->get_SliceAdaptor();
my $attrib_adaptor = $db->get_AttributeAdaptor();
......
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