commit/galaxy-central: dannon: Workflow Parameter bugfix for the case when a parameter isn't used in
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/6cacf178a129/ changeset: r5400:6cacf178a129 user: dannon date: 2011-04-15 05:40:19 summary: Workflow Parameter bugfix for the case when a parameter isn't used in any workflow step, but should still be available for PJAs. affected #: 1 file (62 bytes) --- a/templates/workflow/run.mako Thu Apr 14 20:25:54 2011 -0400 +++ b/templates/workflow/run.mako Thu Apr 14 23:40:19 2011 -0400 @@ -165,7 +165,7 @@ wf_parms = {} for step in steps: - for v in step.state.inputs.itervalues(): + for v in [ActionBox.get_short_str(pja) for pja in step.post_job_actions] + step.state.inputs.values(): if isinstance(v, basestring): for rematch in re.findall('\$\{.+?\}', v): if rematch[2:-1] not in wf_parms: 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