1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/114b0d376470/ Changeset: 114b0d376470 User: jmchilton Date: 2014-12-18 15:21:42+00:00 Summary: Fix bug in 8d5089f2ba8183439a866026f3583c377f8bfa74. Affected #: 1 file diff -r 5e5c0cf930bb96bf8af0bd19daad1a999b40c374 -r 114b0d3764700a69e87c39f07a1c925a76814261 lib/galaxy/workflow/run_request.py --- a/lib/galaxy/workflow/run_request.py +++ b/lib/galaxy/workflow/run_request.py @@ -56,13 +56,13 @@ possible_input_keys = [] for inputs_by_el in inputs_by.split("|"): if inputs_by_el == "step_id": - possible_input_keys = [str( step.id )] + possible_input_keys.append(str( step.id )) elif inputs_by_el == "step_index": - possible_input_keys = [str( step.order_index )] + possible_input_keys.append(str( step.order_index )) elif inputs_by_el == "step_uuid": - possible_input_keys = [str( step.uuid )] + possible_input_keys.append(str( step.uuid )) elif inputs_by_el == "name": - possible_input_keys = [step.tool_inputs.get( 'name', None )] + possible_input_keys.append(step.tool_inputs.get( 'name', None )) else: message = "Workflow cannot be run because unexpected inputs_by value specified." raise exceptions.MessageException( message ) 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.