1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/ff2b00fcbd70/ Changeset: ff2b00fcbd70 User: jmchilton Date: 2015-02-05 18:32:56+00:00 Summary: Bugfix for bugfix d3b1f6b. d3b1f6b fix the GUI (in an obsecure use) but broke fairly typical uses of the API. Affected #: 1 file diff -r b6349ba5cda26cdea678c4842136e50363c0629f -r ff2b00fcbd70e3d7ce10b0444412cc68d2ede46f lib/galaxy/workflow/modules.py --- a/lib/galaxy/workflow/modules.py +++ b/lib/galaxy/workflow/modules.py @@ -330,7 +330,9 @@ # so do that now so dependent steps can be recalculated. In the future # everything should come in from the API and this can be eliminated. if not invocation.has_input_for_step( step.id ): - invocation.add_input( step_outputs.values()[ 0 ], step.id ) + content = step_outputs.values()[ 0 ] + if content: + invocation.add_input( content, step.id ) progress.set_outputs_for_input( step, step_outputs ) return job Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.