Skip to content
Snippets Groups Projects
Commit 8ec1d6ba authored by Andy Yates's avatar Andy Yates
Browse files

removing format and adding type. also doing -driver in the newer way

parent 41de0c84
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ use base ('Bio::EnsEMBL::Hive::PipeConfig::HiveGeneric_conf'); ...@@ -8,7 +8,7 @@ use base ('Bio::EnsEMBL::Hive::PipeConfig::HiveGeneric_conf');
sub default_options { sub default_options {
my ($self) = @_; my ($self) = @_;
return { my $h = {
# inherit other stuff from the base class # inherit other stuff from the base class
%{ $self->SUPER::default_options() }, %{ $self->SUPER::default_options() },
...@@ -17,12 +17,11 @@ sub default_options { ...@@ -17,12 +17,11 @@ sub default_options {
### Defaults ### Defaults
pipeline_name => 'flatfile_dump_check_'.$self->o('format'), pipeline_name => 'flatfile_dump_check_'.$self->o('type'),
pipeline_db => {
-driver => 'sqlite',
}
}; };
$h->{pipeline_db}->{-driver} = 'sqlite';
return $h;
} }
sub pipeline_create_commands { sub pipeline_create_commands {
......
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