commit/galaxy-central: dannon: workflows api: patch from Tobias Wohlfrom <twohlfrom@illumina.com>
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/93ca67adcc56/ changeset: r5290:93ca67adcc56 user: dannon date: 2011-03-31 17:27:49 summary: workflows api: patch from Tobias Wohlfrom <twohlfrom@illumina.com> Fixed label output in workflow API in order to map the input datasets. affected #: 1 file (9 bytes) --- a/lib/galaxy/web/api/workflows.py Thu Mar 31 10:16:40 2011 -0400 +++ b/lib/galaxy/web/api/workflows.py Thu Mar 31 11:27:49 2011 -0400 @@ -57,7 +57,7 @@ inputs = {} for step in latest_workflow.steps: if step.type == 'data_input': - inputs[step.id] = {'label':"Input Dataset", 'value':""} + inputs[step.id] = {'label':step.tool_inputs['name'], 'value':""} else: pass # Eventually, allow regular tool parameters to be inserted and modified at runtime. 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