1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/6301e0c62a03/ Changeset: 6301e0c62a03 User: Jeremy Goecks Date: 2014-03-27 03:14:10 Summary: Trackster: (a) default read track block colors to gray in order to show variants; (b) do not set default height of variant track. Affected #: 2 files diff -r 8bb0825fe57b1592331ca685c1e3f74ffdb83ca9 -r 6301e0c62a03b508f2a6fd218dd71ef5d6163511 static/scripts/viz/trackster/tracks.js --- a/static/scripts/viz/trackster/tracks.js +++ b/static/scripts/viz/trackster/tracks.js @@ -4031,7 +4031,7 @@ { key: 'show_labels', label: 'Show summary and sample labels', type: 'bool', default_value: true }, { key: 'summary_height', label: 'Locus summary height', type: 'float', default_value: 20 }, { key: 'mode', type: 'string', default_value: this.mode, hidden: true }, - { key: 'height', type: 'int', default_value: 32, hidden: true } + { key: 'height', type: 'int', default_value: 0, hidden: true } ] ), config_onchange: function() { @@ -4169,8 +4169,8 @@ extend(ReadTrack.prototype, Drawable.prototype, TiledTrack.prototype, FeatureTrack.prototype, { config_params: _.union( Drawable.prototype.config_params, [ - { key: 'block_color', label: 'Block and sense strand color', type: 'color' }, - { key: 'reverse_strand_color', label: 'Antisense strand color', type: 'color' }, + { key: 'block_color', label: 'Block and sense strand color', type: 'color', 'default_value': '#DDDDDD' }, + { key: 'reverse_strand_color', label: 'Antisense strand color', type: 'color', 'default_value': '#AAAAAA' }, { key: 'label_color', label: 'Label color', type: 'color', default_value: 'black' }, { key: 'show_insertions', label: 'Show insertions', type: 'bool', default_value: false }, { key: 'show_differences', label: 'Show differences only', type: 'bool', default_value: true }, diff -r 8bb0825fe57b1592331ca685c1e3f74ffdb83ca9 -r 6301e0c62a03b508f2a6fd218dd71ef5d6163511 static/scripts/viz/trackster_ui.js --- a/static/scripts/viz/trackster_ui.js +++ b/static/scripts/viz/trackster_ui.js @@ -43,7 +43,7 @@ { icon_class: 'plus-button', title: 'Add tracks', on_click: function() { visualization.select_datasets(galaxy_config.root + "visualization/list_current_history_datasets", galaxy_config.root + "api/datasets", { 'f-dbkey': view.dbkey }, function(tracks) { _.each(tracks, function(track) { - view.add_drawable( object_from_template(track, view, view) ); + view.add_drawable( object_from_template(track, view, view) ); }); }); } }, 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.