Skip to content
Snippets Groups Projects
Commit 5989548c authored by Magali Ruffier's avatar Magali Ruffier
Browse files

NonSense module added to list of analyses to run after variation handover

parent 515a0ce0
No related branches found
No related tags found
No related merge requests found
......@@ -60,17 +60,16 @@ sub pipeline_analyses {
-input_ids => [ {} ],
-flow_into => {
'A->1' => ['Notify'],
'4->A' => ['SnpDensity', 'SnpCount'],
'4->A' => ['SnpDensity', 'SnpCount', 'NonSense'],
},
},
{
-logic_name => 'SnpCount',
-module => 'Bio::EnsEMBL::Pipeline::Production::SnpCount',
-max_retry_count => 1,
-max_retry_count => 2,
-hive_capacity => 10,
-rc_name => 'default',
-can_be_empty => 1,
},
{
......@@ -80,10 +79,20 @@ sub pipeline_analyses {
table => 'gene', logic_name => 'snpdensity', value_type => 'sum',
bin_count => $self->o('bin_count'), max_run => $self->o('max_run'),
},
-max_retry_count => 1,
-max_retry_count => 2,
-hive_capacity => 10,
-rc_name => 'default',
},
{
-logic_name => 'NonSense',
-module => 'Bio::EnsEMBL::Pipeline::Production::NonSense',
-parameters => {
frequency => 0.1, observation => 20,
},
-max_retry_count => 2,
-hive_capacity => 10,
-rc_name => 'default',
-can_be_empty => 1,
},
####### NOTIFICATION
......
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