commit/galaxy-central: dannon: Workflow import fix for 10117
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/434335f80161/ Changeset: 434335f80161 User: dannon Date: 2013-06-21 10:37:07 Summary: Workflow import fix for 10117 Affected #: 1 file diff -r cf58e35b3a973311ab291e90b501c6f4bc31b6d3 -r 434335f801613d882ff57ea8c7dcdc00a1b8d4f2 lib/galaxy/workflow/modules.py --- a/lib/galaxy/workflow/modules.py +++ b/lib/galaxy/workflow/modules.py @@ -246,8 +246,8 @@ return module_factory.from_dict(trans, from_json_string(step.config), secure=False) module = Class( trans, tool_id ) module.state = galaxy.tools.DefaultToolState() - if step.tool_version and (step.tool_version != tool.version): - module.version_changes.append("%s: using version '%s' instead of version '%s' indicated in this workflow." % (tool_id, tool.version, step.tool_version)) + if step.tool_version and (step.tool_version != module.tool.version): + module.version_changes.append("%s: using version '%s' instead of version '%s' indicated in this workflow." % (tool_id, module.tool.version, step.tool_version)) module.state.inputs = module.tool.params_from_strings( step.tool_inputs, trans.app, ignore_errors=True ) module.errors = step.tool_errors # module.post_job_actions = step.post_job_actions 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.
participants (1)
-
commits-noreply@bitbucket.org