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

adding automatic dataflow to branch 1

parent c84acd27
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,7 @@ foreach my $branch_code (keys %$flow_into) {
}
my $input_id = stringify($param_hash);
$job->autoflow(1);
$job->input_id( $input_id );
warn "\nRunning '$runnable_module' with '$input_id' :\n";
......@@ -68,6 +69,11 @@ $process->run();
unless($no_write) {
warn "\nWRITE_OUTPUT:\n";
$process->write_output();
if( $job->autoflow ) {
warn "\nAUTOFLOW input->output\n";
$job->dataflow_output_id();
}
}
warn "\nDONE.\n";
......
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