commit/galaxy-central: guerler: Parameters: Fix late validation criteria
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/1fb4f358624f/ Changeset: 1fb4f358624f User: guerler Date: 2015-02-16 22:26:09+00:00 Summary: Parameters: Fix late validation criteria Affected #: 1 file diff -r 0155ac3c87edc23a2edefa54aca7a7d694fb9f33 -r 1fb4f358624fbc34472c63991db8a93d690f37af lib/galaxy/tools/parameters/basic.py --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -965,7 +965,7 @@ # Old style dynamic options, no dependency information so there isn't # a lot we can do: if we're dealing with workflows, have to assume # late validation no matter what. - if (self.dynamic_options is not None or self.is_dynamic is not None) and ( trans is None or trans.workflow_building_mode ): + if self.dynamic_options is not None and ( trans is None or trans.workflow_building_mode ): return True # If we got this far, we can actually look at the dependencies # to see if their values will not be available until 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)
-
commits-noreply@bitbucket.org