2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/078dd25c5fa7/ Changeset: 078dd25c5fa7 Branch: stable User: jmchilton Date: 2014-04-19 21:37:02 Summary: Bugfix for multiple input data parameters. Workflow editor would drop all but one multiple input data connections if and when the parameter itself was nested in repeats/conds. Affected #: 1 file diff -r e6876f6918548a0805fa0cc5306ba1ced6fb184a -r 078dd25c5fa78199f8c21b60b0bbe6b35f1eb0ad lib/galaxy/webapps/galaxy/controllers/workflow.py --- a/lib/galaxy/webapps/galaxy/controllers/workflow.py +++ b/lib/galaxy/webapps/galaxy/controllers/workflow.py @@ -763,7 +763,7 @@ def callback( input, value, prefixed_name, prefixed_label ): if isinstance( input, DataToolParameter ): data_input_names[ prefixed_name ] = True - multiple_input[input.name] = input.multiple + multiple_input[ prefixed_name ] = input.multiple visit_input_values( module.tool.inputs, module.state.inputs, callback ) # Filter # FIXME: this removes connection without displaying a message currently! https://bitbucket.org/galaxy/galaxy-central/commits/3b4272535922/ Changeset: 3b4272535922 Branch: stable User: dannon Date: 2014-04-23 15:44:28 Summary: Merged in jmchilton/galaxy-central-fork-1/stable (pull request #373) [stable] Bugfix for multiple input data parameters. Affected #: 1 file diff -r 7a7985a007fbce2bfa7bea5d8d23af1d63fecbb1 -r 3b42725359224832317a066d95dff596f93ab33f lib/galaxy/webapps/galaxy/controllers/workflow.py --- a/lib/galaxy/webapps/galaxy/controllers/workflow.py +++ b/lib/galaxy/webapps/galaxy/controllers/workflow.py @@ -763,7 +763,7 @@ def callback( input, value, prefixed_name, prefixed_label ): if isinstance( input, DataToolParameter ): data_input_names[ prefixed_name ] = True - multiple_input[input.name] = input.multiple + multiple_input[ prefixed_name ] = input.multiple visit_input_values( module.tool.inputs, module.state.inputs, callback ) # Filter # FIXME: this removes connection without displaying a message currently! 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.