Skip to content
Snippets Groups Projects
Commit 7ab1f0cb authored by Leo Gordon's avatar Leo Gordon
Browse files

bugfix: stop printing overflow-related debug output to STDOUT; interface with...

bugfix: stop printing overflow-related debug output to STDOUT; interface with overflow adaptor simplified
parent 8a48338b
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ sub store_if_needed {
my ($stored_hash) = $self->store({'data'=> $data}, 1);
return $stored_hash->{'analysis_data_id'};
return '_extended_data_id ' . $stored_hash->{'analysis_data_id'};
}
1;
......@@ -122,21 +122,15 @@ sub CreateNewJob {
}
if(length($input_id) >= 255) {
print "input_id is '$input_id', length = ".length($input_id)."\n";
my $extended_data_id = $analysis->adaptor->db->get_AnalysisDataAdaptor->store_if_needed($input_id);
$input_id = "_extended_data_id $extended_data_id";
$input_id = $analysis->adaptor->db->get_AnalysisDataAdaptor->store_if_needed($input_id);
}
if(length($param_id_stack) >= 64) {
print "param_id_stack is '$param_id_stack', length = ".length($param_id_stack)."\n";
my $extended_data_id = $analysis->adaptor->db->get_AnalysisDataAdaptor->store_if_needed($param_id_stack);
$param_id_stack = "_extended_data_id $extended_data_id";
$param_id_stack = $analysis->adaptor->db->get_AnalysisDataAdaptor->store_if_needed($param_id_stack);
}
if(length($accu_id_stack) >= 64) {
print "accu_id_stack is '$accu_id_stack', length = ".length($accu_id_stack)."\n";
my $extended_data_id = $analysis->adaptor->db->get_AnalysisDataAdaptor->store_if_needed($accu_id_stack);
$accu_id_stack = "_extended_data_id $extended_data_id";
$accu_id_stack = $analysis->adaptor->db->get_AnalysisDataAdaptor->store_if_needed($accu_id_stack);
}
......
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