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
6dd08829
Commit
6dd08829
authored
Mar 11, 2014
by
Leo Gordon
Browse files
incompatible_change: -analysis_topup always on, -job_topup dropped in fav. of seed_pipeline.pl
parent
54cee0e3
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
177 additions
and
167 deletions
+177
-167
modules/Bio/EnsEMBL/Hive/PipeConfig/HiveGeneric_conf.pm
modules/Bio/EnsEMBL/Hive/PipeConfig/HiveGeneric_conf.pm
+158
-163
scripts/init_pipeline.pl
scripts/init_pipeline.pl
+19
-4
No files found.
modules/Bio/EnsEMBL/Hive/PipeConfig/HiveGeneric_conf.pm
View file @
6dd08829
This diff is collapsed.
Click to expand it.
scripts/init_pipeline.pl
View file @
6dd08829
...
...
@@ -18,16 +18,31 @@ BEGIN {
}
use
Getopt::
Long
qw(:config pass_through no_auto_abbrev)
;
use
Bio::EnsEMBL::Hive::
Utils
('
script_usage
',
'
load_file_or_module
');
sub
main
{
my
%deprecated_option
=
();
GetOptions
(
\
%deprecated_option
,
'
analysis_topup!
',
# always on
'
job_topup!
',
# never, use seed_pipeline.pl
);
if
(
$deprecated_option
{'
job_topup
'})
{
die
"
-job_topup mode has been discontinued. Please use seed_pipeline.pl instead.
\n
";
}
if
(
$deprecated_option
{'
analysis_topup
'})
{
die
"
-analysis_topup has been deprecated. Please note this script now *always* runs in -analysis_topup mode.
\n
";
}
my
$file_or_module
=
shift
@ARGV
or
script_usage
(
0
);
my
$config_
modul
e
=
load_file_or_module
(
$file_or_module
);
my
$
pipe
config_
package_nam
e
=
load_file_or_module
(
$file_or_module
);
my
$config_object
=
$config_module
->
new
();
$config_object
->
process_options
();
$config_object
->
run
();
my
$pipeconfig_object
=
$pipeconfig_package_name
->
new
();
$pipeconfig_object
->
process_options
();
$pipeconfig_object
->
run
();
$pipeconfig_object
->
show_useful_commands
();
}
main
();
...
...
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