1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/7fd6061e43d5/ Changeset: 7fd6061e43d5 Branch: stable User: dan Date: 2015-01-14 20:02:23+00:00 Summary: Make DatasetListWrapper and DatasetCollectionWrapper subclasses of ToolParameterValueWrapper. Affected #: 1 file diff -r fd1946912be3f0454e155effc10e5a2127388559 -r 7fd6061e43d5122b2e99f0dc18370af3d190cb34 lib/galaxy/tools/wrappers.py --- a/lib/galaxy/tools/wrappers.py +++ b/lib/galaxy/tools/wrappers.py @@ -262,7 +262,7 @@ return DatasetFilenameWrapper( dataset, **wrapper_kwds ) -class DatasetListWrapper( list, HasDatasets ): +class DatasetListWrapper( list, ToolParameterValueWrapper, HasDatasets ): """ """ def __init__( self, datasets, dataset_paths=[], **kwargs ): @@ -277,7 +277,7 @@ return ','.join( map( str, self ) ) -class DatasetCollectionWrapper( object, HasDatasets ): +class DatasetCollectionWrapper( ToolParameterValueWrapper, HasDatasets ): def __init__( self, has_collection, dataset_paths=[], **kwargs ): super(DatasetCollectionWrapper, self).__init__() 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.