Skip to content

Commit

Permalink
Revert default database setting
Browse files Browse the repository at this point in the history
  • Loading branch information
nuno-agostinho committed Nov 24, 2022
1 parent 1bbac68 commit 747b5db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/VEP/Config.pm
Expand Up @@ -70,7 +70,7 @@ use base qw(Bio::EnsEMBL::VEP::BaseVEP);
our %DEFAULTS = (

# database settings
database => 0,
database => 1,
host => 'ensembldb.ensembl.org',
user => 'anonymous',
port => 3306,
Expand Down
2 changes: 2 additions & 0 deletions vep
Expand Up @@ -222,6 +222,8 @@ warn("WARNING: More than one output file command-line flag provided. Using the l
$config->{output_file}=@{$config->{output_file}}[-1] if ($config->{output_file});
&usage && exit(0) if (!$arg_count) || $config->{help};

$config->{database} ||= 0;

my $runner = Bio::EnsEMBL::VEP::Runner->new($config);

if($config->{show_cache_info}) {
Expand Down

0 comments on commit 747b5db

Please sign in to comment.