Skip to content

Commit

Permalink
Flip order of standard/high_mem analyses
Browse files Browse the repository at this point in the history
It's a bit easier to read through a config file if the analyses are in the same order as the flow through the pipeline, i.e. high_mem ones should come after the standard analysis.
  • Loading branch information
james-monkeyshines committed Jan 28, 2020
1 parent c01eef0 commit b8e57fc
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions lib/Bio/EnsEMBL/DataCheck/Pipeline/DbDataChecks_conf.pm
Original file line number Diff line number Diff line change
Expand Up @@ -200,26 +200,25 @@ sub pipeline_analyses {
},

{
-logic_name => 'RunDataChecks_High_mem',
-logic_name => 'RunDataChecks',
-module => 'Bio::EnsEMBL::DataCheck::Pipeline::RunDataChecks',
-analysis_capacity => 10,
-max_retry_count => 0,
-rc_name => '8GB',
-rc_name => '2GB',
-flow_into => {
'1' => ['StoreResults'],
'-1' => ['RunDataChecks_High_mem']
},

},

{
-logic_name => 'RunDataChecks',
-logic_name => 'RunDataChecks_High_mem',
-module => 'Bio::EnsEMBL::DataCheck::Pipeline::RunDataChecks',
-analysis_capacity => 10,
-max_retry_count => 0,
-rc_name => '2GB',
-rc_name => '8GB',
-flow_into => {
'1' => ['StoreResults'],
'-1' => ['RunDataChecks_High_mem']
},
},

Expand All @@ -234,28 +233,27 @@ sub pipeline_analyses {
'A->1' => ['DataCheckFunnel'],
},
},

{
-logic_name => 'DataCheckFan_High_mem',
-logic_name => 'DataCheckFan',
-module => 'Bio::EnsEMBL::DataCheck::Pipeline::DataCheckFan',
-analysis_capacity => 100,
-max_retry_count => 0,
-rc_name => '8GB',
-rc_name => '2GB',
-flow_into => {
'1' => ['?accu_name=results&accu_address=[]'],
'-1' => ['DataCheckFan_High_mem']
},
},


{
-logic_name => 'DataCheckFan',
-logic_name => 'DataCheckFan_High_mem',
-module => 'Bio::EnsEMBL::DataCheck::Pipeline::DataCheckFan',
-analysis_capacity => 100,
-max_retry_count => 0,
-rc_name => '2GB',
-rc_name => '8GB',
-flow_into => {
'1' => ['?accu_name=results&accu_address=[]'],
'-1' => ['DataCheckFan_High_mem']
},
},

Expand Down

0 comments on commit b8e57fc

Please sign in to comment.