Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl-hive
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl-hive
Commits
2bb0b66f
Commit
2bb0b66f
authored
15 years ago
by
Leo Gordon
Browse files
Options
Downloads
Patches
Plain Diff
Planned to be a universal pipeline loader. Let's see...
parent
9dae754c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/init_pipeline.pl
+107
-0
107 additions, 0 deletions
scripts/init_pipeline.pl
with
107 additions
and
0 deletions
scripts/init_pipeline.pl
0 → 100755
+
107
−
0
View file @
2bb0b66f
#!/usr/local/ensembl/bin/perl -w
# A generic loader of hive pipelines
use
strict
;
use
DBI
;
use
Getopt::
Long
;
use
Data::
Dumper
;
# NB: this one is not for testing but for actual data structure stringification
use
Bio::EnsEMBL::Hive::DBSQL::
DBAdaptor
;
sub
bk_url
{
my
$db_conn
=
shift
@_
;
return
"
mysql://
$db_conn
->{-user}:
$db_conn
->{-pass}
\@
$db_conn
->{-host}:
$db_conn
->{-port}/
$db_conn
->{-dbname}
";
}
sub
main
{
Bio::EnsEMBL::
Registry
->
no_version_check
(
1
);
my
$config_file
;
GetOptions
(
'
conf=s
'
=>
\
$config_file
,
);
unless
(
$config_file
and
(
-
f
$config_file
))
{
warn
"
Please supply a valid pipeline configuration file using '-conf' option
\n
";
warn
"
Usage example:
\n\t
$0 ~lg4/work/ensembl-compara/scripts/family/family_pipeline.conf
\n
";
exit
(
1
);
}
my
$self
=
bless
{
do
$config_file
};
foreach
my
$cmd
(
@
{
$self
->
{
-
pipeline_create_commands
}})
{
warn
"
Running the command:
\n\t
$cmd
\n
";
if
(
my
$retval
=
system
(
$cmd
))
{
die
"
Return value =
$retval
, possibly an error
\n
";
}
else
{
warn
"
Done.
\n\n
";
}
}
my
$hive_dba
=
new
Bio::EnsEMBL::Hive::DBSQL::
DBAdaptor
(
%
{
$self
->
{
-
pipeline_db
}});
my
$analysis_adaptor
=
$hive_dba
->
get_AnalysisAdaptor
;
my
$ctrl_rule_adaptor
=
$hive_dba
->
get_AnalysisCtrlRuleAdaptor
;
#
## not yet being used by the family pipeline:
# my $dataflow_rule_adaptor = $hive_dba->get_DataflowRuleAdaptor;
# tune Data::Dumper module to produce the output we want:
$
Data::Dumper::
Indent
=
0
;
# we want everything on one line
$
Data::Dumper::
Terse
=
1
;
# and we want it without dummy variable names
foreach
my
$aha
(
@
{
$self
->
{
-
pipeline_analyses
}})
{
my
(
$logic_name
,
$module
,
$parameters
,
$input_ids
,
$blocked
,
$wait_for
,
$batch_size
,
$hive_capacity
)
=
(
$aha
->
{
-
logic_name
},
$aha
->
{
-
module
},
$aha
->
{
-
parameters
},
$aha
->
{
-
input_ids
},
$aha
->
{
-
blocked
},
$aha
->
{
-
wait_for
},
$aha
->
{
-
batch_size
},
$aha
->
{
-
hive_capacity
});
warn
"
Creating '
$logic_name
'...
\n
";
my
$analysis
=
Bio::EnsEMBL::
Analysis
->
new
(
-
db
=>
'',
-
db_file
=>
'',
-
db_version
=>
'
1
',
-
logic_name
=>
$logic_name
,
-
module
=>
$module
,
-
parameters
=>
Dumper
(
$parameters
),
);
$analysis_adaptor
->
store
(
$analysis
);
my
$stats
=
$analysis
->
stats
();
$stats
->
batch_size
(
$batch_size
)
if
(
defined
(
$batch_size
));
# ToDo: hive_capacity for some analyses is set to '-1'.
# Do we want this behaviour by default?
$stats
->
hive_capacity
(
$hive_capacity
)
if
(
defined
(
$hive_capacity
));
# some analyses will be waiting for human intervention in blocked state:
$stats
->
status
(
$blocked
?
'
BLOCKED
'
:
'
READY
');
$stats
->
update
();
# now create the corresponding jobs (if there are any):
foreach
my
$input_id
(
@$input_ids
)
{
Bio::EnsEMBL::Hive::DBSQL::
AnalysisJobAdaptor
->
CreateNewJob
(
-
input_id
=>
Dumper
(
$input_id
),
-
analysis
=>
$analysis
,
-
input_job_id
=>
0
,
# jobs are created by the initialization script, not by another job
);
}
# create control rules:
foreach
my
$condition_logic_name
(
@$wait_for
)
{
my
$condition_analysis
=
$analysis_adaptor
->
fetch_by_logic_name
(
$condition_logic_name
);
$ctrl_rule_adaptor
->
create_rule
(
$condition_analysis
,
$analysis
);
}
}
print
"
\n\n\t
Please run the following commands:
\n\n
";
print
"
beekeeper.pl -url
"
.
bk_url
(
$self
->
{
-
pipeline_db
})
.
"
-sync
\n
";
print
"
beekeeper.pl -url
"
.
bk_url
(
$self
->
{
-
pipeline_db
})
.
"
-loop
\n
";
}
main
();
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment