commit/galaxy-central: dan: Fix for exporting tagged MAF blocks from GMAJ into a Galaxy history.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/de05a856a4b2/ changeset: de05a856a4b2 user: dan date: 2011-08-08 22:00:35 summary: Fix for exporting tagged MAF blocks from GMAJ into a Galaxy history. affected #: 1 file (19 bytes) --- a/lib/galaxy/datatypes/images.py Mon Aug 08 09:35:48 2011 -0400 +++ b/lib/galaxy/datatypes/images.py Mon Aug 08 16:00:35 2011 -0400 @@ -191,7 +191,7 @@ "nobutton": "false", "urlpause" :"100", "debug": "false", - "posturl": quote_plus( "history_add_to?%s" % "&".join( [ "%s=%s" % ( key, value ) for key, value in { 'history_id': dataset.history_id, 'ext': 'maf', 'name': 'GMAJ Output on data %s' % dataset.hid, 'info': 'Added by GMAJ', 'dbkey': dataset.dbkey, 'copy_access_from': dataset.id }.items() ] ) ) + "posturl": "history_add_to?%s" % "&".join( map( lambda x: "%s=%s" % ( x[0], quote_plus( str( x[1] ) ) ), [ ( 'copy_access_from', dataset.id), ( 'history_id', dataset.history_id ), ( 'ext', 'maf' ), ( 'name', 'GMAJ Output on data %s' % dataset.hid ), ( 'info', 'Added by GMAJ' ), ( 'dbkey', dataset.dbkey ) ] ) ) } class_name = "edu.psu.bx.gmaj.MajApplet.class" archive = "/static/gmaj/gmaj.jar" 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