2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/5c57dfac1e31/ changeset: 5c57dfac1e31 user: jgoecks date: 2012-02-07 17:30:45 summary: Trackster: small variable reference fix. affected #: 1 file diff -r b4ba8b20d78d5ae92ebab85afeb6662ca602d427 -r 5c57dfac1e3143e3931bb5d5cc774248f8060113 static/scripts/trackster.js --- a/static/scripts/trackster.js +++ b/static/scripts/trackster.js @@ -833,10 +833,11 @@ this.changed(); this.container.remove_drawable(this); + var view = this.view; this.container_div.hide(0, function() { $(this).remove(); // HACK: is there a better way to update the view? - drawable.view.update_intro_div(); + view.update_intro_div(); }); }, /** https://bitbucket.org/galaxy/galaxy-central/changeset/9ba4435bfd4e/ changeset: 9ba4435bfd4e user: jgoecks date: 2012-02-07 17:35:48 summary: Fix bug in GFFDataProvider iterator. affected #: 1 file diff -r 5c57dfac1e3143e3931bb5d5cc774248f8060113 -r 9ba4435bfd4ee6111c511c003f1ba6a54b6cb91d lib/galaxy/visualization/tracks/data_providers.py --- a/lib/galaxy/visualization/tracks/data_providers.py +++ b/lib/galaxy/visualization/tracks/data_providers.py @@ -936,7 +936,7 @@ for feature in GFFReaderWrapper( source, fix_strand=True ): # Only provide features that are in region. feature_start, feature_end = convert_gff_coords_to_bed( [ feature.start, feature.end ] ) - if feature.chrom != chrom or feature_start < start or feature_end > end: + if feature.chrom != chrom or feature_end < start or feature_start > end: continue yield feature return features_in_region_iter() 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.