commit/galaxy-central: jgoecks: Include custom genomes in dbkey field when uploading library datasets.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/0ec7f0b6dec8/ changeset: 0ec7f0b6dec8 user: jgoecks date: 2012-12-14 14:47:08 summary: Include custom genomes in dbkey field when uploading library datasets. affected #: 1 file diff -r 1d73c973c9adfa27e1759c280e94c712145e1e03 -r 0ec7f0b6dec8707b6f4d114468367c9131e61200 lib/galaxy/webapps/galaxy/controllers/library_common.py --- a/lib/galaxy/webapps/galaxy/controllers/library_common.py +++ b/lib/galaxy/webapps/galaxy/controllers/library_common.py @@ -944,11 +944,7 @@ # Send list of data formats to the upload form so the "extension" select list can be populated dynamically file_formats = trans.app.datatypes_registry.upload_file_formats - # Send list of genome builds to the form so the "dbkey" select list can be populated dynamically - def get_dbkey_options( last_used_build ): - for dbkey, build_name in util.dbnames: - yield build_name, dbkey, ( dbkey==last_used_build ) - dbkeys = get_dbkey_options( last_used_build ) + dbkeys = trans.app.genomes.get_dbkeys_with_chrom_info( trans ) # Send the current history to the form to enable importing datasets from history to library history = trans.get_history() if history is not None: 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