commit/galaxy-central: dannon: Workflows: Fix for 0ba260ea43c4 to correctly display error message when attempting to run a workflow missing tools.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/92b2699573b9/ changeset: 92b2699573b9 user: dannon date: 2012-09-20 20:11:19 summary: Workflows: Fix for 0ba260ea43c4 to correctly display error message when attempting to run a workflow missing tools. affected #: 1 file diff -r dd1711a3518a27f6426cdf4d9def2efae29149c0 -r 92b2699573b9c2c8439e1e53a03c9e01ae1c4f15 lib/galaxy/web/controllers/workflow.py --- a/lib/galaxy/web/controllers/workflow.py +++ b/lib/galaxy/web/controllers/workflow.py @@ -1497,7 +1497,11 @@ step.input_connections_by_name = dict( ( conn.input_name, conn ) for conn in step.input_connections ) if missing_tools: stored.annotation = self.get_item_annotation_str( trans.sa_session, trans.user, stored ) - return trans.fill_template("workflow/run.mako", steps=[], workflow=stored, missing_tools = missing_tools) + return trans.fill_template("workflow/run.mako", + steps=[], + workflow=stored, + hide_fixed_params=hide_fixed_params, + missing_tools = missing_tools) # Render the form stored.annotation = self.get_item_annotation_str( trans.sa_session, trans.user, stored ) return trans.fill_template( 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