commit/galaxy-central: dannon: Workflows: Fix for 5cfec3f4f17c to accommodate workflows with 'input dataset' steps.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/a0fc8c81ff09/ changeset: a0fc8c81ff09 user: dannon date: 2011-10-14 20:21:07 summary: Workflows: Fix for 5cfec3f4f17c to accommodate workflows with 'input dataset' steps. affected #: 1 file (-1 bytes) --- a/lib/galaxy/web/controllers/workflow.py Fri Oct 14 12:14:54 2011 -0400 +++ b/lib/galaxy/web/controllers/workflow.py Fri Oct 14 14:21:07 2011 -0400 @@ -1764,7 +1764,7 @@ # FIXME: Position should be handled inside module step.position = step_dict['position'] module = module_factory.from_dict( trans, step_dict, secure=False ) - if module.tool is None: + if module.type == 'tool' and module.tool is None: # A required tool is not available in the local Galaxy instance. missing_tool_tup = ( step_dict[ 'tool_id' ], step_dict[ 'name' ], step_dict[ 'tool_version' ] ) if missing_tool_tup not in missing_tool_tups: 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)
-
Bitbucket