[hg] galaxy 3516: Fix for implicit datatype conversion.
details: http://www.bx.psu.edu/hg/galaxy/rev/2e97ae04856d changeset: 3516:2e97ae04856d user: Dan Blankenberg <dan@bx.psu.edu> date: Thu Mar 11 11:17:11 2010 -0500 description: Fix for implicit datatype conversion. diffstat: lib/galaxy/datatypes/data.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diffs (12 lines): diff -r 6fa986527398 -r 2e97ae04856d lib/galaxy/datatypes/data.py --- a/lib/galaxy/datatypes/data.py Wed Mar 10 23:59:25 2010 -0500 +++ b/lib/galaxy/datatypes/data.py Thu Mar 11 11:17:11 2010 -0500 @@ -257,7 +257,7 @@ break params[input_name] = original_dataset #Run converter, job is dispatched through Queue - converted_dataset = converter.execute( trans, incoming = params, set_output_hid = visible ) + converted_dataset = converter.execute( trans, incoming = params, set_output_hid = visible )[1] if len(params) > 0: trans.log_event( "Converter params: %s" % (str(params)), tool_id=converter.id ) if not visible:
participants (1)
-
Greg Von Kuster