commit/galaxy-central: jmchilton: get_intiail_value history fix. Allows ToolDataParameters inside of repeats when using API.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/418993fac75d/ Changeset: 418993fac75d User: jmchilton Date: 2013-11-14 19:35:27 Summary: get_intiail_value history fix. Allows ToolDataParameters inside of repeats when using API. Affected #: 1 file diff -r 3402a11b008865ee37ee29c9d7d3d5ea27c6fe84 -r 418993fac75d07297dc317e183cf401fd9fbb869 lib/galaxy/tools/parameters/grouping.py --- a/lib/galaxy/tools/parameters/grouping.py +++ b/lib/galaxy/tools/parameters/grouping.py @@ -113,7 +113,7 @@ for i in range( self.default ): rval_dict = { '__index__': i} for input in self.inputs.itervalues(): - rval_dict[ input.name ] = input.get_initial_value( trans, context ) + rval_dict[ input.name ] = input.get_initial_value( trans, context, history=history ) rval.append( rval_dict ) return rval 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