Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
cc430bb2
Commit
cc430bb2
authored
Apr 16, 2017
by
Matthieu Muffato
Browse files
Simplified imports
I still hope to get rid of all "Subroutine redefined at" warnings
parent
d2ccc59f
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
1 addition
and
18 deletions
+1
-18
modules/Bio/EnsEMBL/Hive/Analysis.pm
modules/Bio/EnsEMBL/Hive/Analysis.pm
+0
-4
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisCtrlRuleAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisCtrlRuleAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisJobAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisJobAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisStatsAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisStatsAdaptor.pm
+0
-2
modules/Bio/EnsEMBL/Hive/DBSQL/DataflowRuleAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/DataflowRuleAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/DataflowTargetAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/DataflowTargetAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/MetaAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/MetaAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/PipelineWideParametersAdaptor.pm
...s/Bio/EnsEMBL/Hive/DBSQL/PipelineWideParametersAdaptor.pm
+0
-2
modules/Bio/EnsEMBL/Hive/DBSQL/ResourceClassAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/ResourceClassAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/ResourceDescriptionAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/ResourceDescriptionAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/RoleAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/RoleAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DBSQL/SemaphoreAdaptor.pm
modules/Bio/EnsEMBL/Hive/DBSQL/SemaphoreAdaptor.pm
+0
-1
modules/Bio/EnsEMBL/Hive/DataflowRule.pm
modules/Bio/EnsEMBL/Hive/DataflowRule.pm
+1
-0
modules/Bio/EnsEMBL/Hive/Semaphore.pm
modules/Bio/EnsEMBL/Hive/Semaphore.pm
+0
-1
No files found.
modules/Bio/EnsEMBL/Hive/Analysis.pm
View file @
cc430bb2
...
...
@@ -42,11 +42,7 @@ use warnings;
use
Bio::EnsEMBL::Hive::
Utils
('
stringify
',
'
throw
');
use
Bio::EnsEMBL::Hive::
AnalysisJob
;
use
Bio::EnsEMBL::Hive::
AnalysisCtrlRule
;
use
Bio::EnsEMBL::Hive::
DataflowRule
;
use
Bio::EnsEMBL::Hive::
GuestProcess
;
use
Bio::EnsEMBL::Hive::Utils::
Collection
;
use
Bio::EnsEMBL::Hive::DBSQL::
AnalysisJobAdaptor
;
use
base
(
'
Bio::EnsEMBL::Hive::Storable
'
);
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisCtrlRuleAdaptor.pm
View file @
cc430bb2
...
...
@@ -39,7 +39,6 @@ package Bio::EnsEMBL::Hive::DBSQL::AnalysisCtrlRuleAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
AnalysisCtrlRule
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisJobAdaptor.pm
View file @
cc430bb2
...
...
@@ -45,7 +45,6 @@ package Bio::EnsEMBL::Hive::DBSQL::AnalysisJobAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
AnalysisJob
;
use
Bio::EnsEMBL::Hive::
Semaphore
;
use
Bio::EnsEMBL::Hive::DBSQL::
DataflowRuleAdaptor
;
use
Bio::EnsEMBL::Hive::
Utils
('
stringify
',
'
destringify
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/AnalysisStatsAdaptor.pm
View file @
cc430bb2
...
...
@@ -45,8 +45,6 @@ package Bio::EnsEMBL::Hive::DBSQL::AnalysisStatsAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
AnalysisStats
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/DataflowRuleAdaptor.pm
View file @
cc430bb2
...
...
@@ -40,7 +40,6 @@ package Bio::EnsEMBL::Hive::DBSQL::DataflowRuleAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
Utils
('
stringify
');
use
Bio::EnsEMBL::Hive::
DataflowRule
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/DataflowTargetAdaptor.pm
View file @
cc430bb2
...
...
@@ -40,7 +40,6 @@ package Bio::EnsEMBL::Hive::DBSQL::DataflowTargetAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
Utils
('
stringify
');
use
Bio::EnsEMBL::Hive::
DataflowTarget
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/MetaAdaptor.pm
View file @
cc430bb2
...
...
@@ -37,7 +37,6 @@ package Bio::EnsEMBL::Hive::DBSQL::MetaAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
MetaParameters
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::NakedTableAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/PipelineWideParametersAdaptor.pm
View file @
cc430bb2
...
...
@@ -38,8 +38,6 @@ package Bio::EnsEMBL::Hive::DBSQL::PipelineWideParametersAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
PipelineWideParameters
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::NakedTableAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/ResourceClassAdaptor.pm
View file @
cc430bb2
...
...
@@ -40,7 +40,6 @@ package Bio::EnsEMBL::Hive::DBSQL::ResourceClassAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
ResourceClass
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/ResourceDescriptionAdaptor.pm
View file @
cc430bb2
...
...
@@ -40,7 +40,6 @@ package Bio::EnsEMBL::Hive::DBSQL::ResourceDescriptionAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
ResourceDescription
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/RoleAdaptor.pm
View file @
cc430bb2
...
...
@@ -40,7 +40,6 @@ package Bio::EnsEMBL::Hive::DBSQL::RoleAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
Role
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DBSQL/SemaphoreAdaptor.pm
View file @
cc430bb2
...
...
@@ -40,7 +40,6 @@ package Bio::EnsEMBL::Hive::DBSQL::SemaphoreAdaptor;
use
strict
;
use
warnings
;
use
Bio::EnsEMBL::Hive::
Semaphore
;
use
base
('
Bio::EnsEMBL::Hive::DBSQL::ObjectAdaptor
');
...
...
modules/Bio/EnsEMBL/Hive/DataflowRule.pm
View file @
cc430bb2
...
...
@@ -53,6 +53,7 @@ use strict;
use
warnings
;
use
Bio::EnsEMBL::Hive::
TheApiary
;
use
Bio::EnsEMBL::Hive::DBSQL::
DataflowRuleAdaptor
;
use
base
(
'
Bio::EnsEMBL::Hive::Storable
'
);
...
...
modules/Bio/EnsEMBL/Hive/Semaphore.pm
View file @
cc430bb2
...
...
@@ -43,7 +43,6 @@ use strict;
use
warnings
;
use
Bio::EnsEMBL::Hive::
TheApiary
;
use
Bio::EnsEMBL::Hive::DBSQL::
SemaphoreAdaptor
;
use
base
(
'
Bio::EnsEMBL::Hive::Storable
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment