Hi all,
I am working in a project that requires running workflows with multiple parameter by using the Galaxy API.
However I realised that /api/workflows webservice does not allow to set several parameters for one sigle step.
You can check that ingalaxy-dist/lib/galaxy/workflow/run.py
_update_step_parameters __doc__ string:
PARAM_DICT = {'param': NAME, 'value': VALUE}
Note that this format allows only one parameter to be set per step.
I've done a change in the script so it allows setting multiple parameters per step.