# HG changeset patch -- Bitbucket.org
# Project galaxy-dist
# URL http://bitbucket.org/galaxy/galaxy-dist/overview
# User jeremy goecks <jeremy.goecks(a)emory.edu>
# Date 1278598278 14400
# Node ID 41089d12cdd9eaaeb8e75e09157d412ccf935eae
# Parent 1d604575f89050503ffbc432e41994948181a9e5
Fix typo in documentation of GFFReaderWrapper.
--- a/lib/galaxy/tools/util/gff_util.py
+++ b/lib/galaxy/tools/util/gff_util.py
@@ -13,7 +13,7 @@ class GFFReaderWrapper( NiceReaderWrappe
interval = GenomicInterval( self, line.split( "\t" ), self.chrom_col, self.start_col, self.end_col, self.strand_col, self.default_strand, fix_strand=self.fix_strand )
# Change from 1-based to 0-based format.
interval.start -= 1
- # Add 1 to end to move from open to closed format for end coordinate.
+ # Add 1 to end to move from closed to open format for end coordinate.
interval.end += 1
return interval
# HG changeset patch -- Bitbucket.org
# Project galaxy-dist
# URL http://bitbucket.org/galaxy/galaxy-dist/overview
# User jeremy goecks <jeremy.goecks(a)emory.edu>
# Date 1278447163 14400
# Node ID a1d152e92eacf882f6e69498ef2fc4f614d4d6ff
# Parent 481da37609972064346f7a91853686533dcea84c
Add enable_pages option and documentation to universe config sample file.
--- a/universe_wsgi.ini.sample
+++ b/universe_wsgi.ini.sample
@@ -315,6 +315,12 @@ use_interactive = True
# Enable Galaxy's built-in visualization module, Trackster.
#enable_tracks = False
+# Enable Galaxy Pages. Pages are custom webpages that include embedded Galaxy items,
+# such as datasets, histories, workflows, and visualizations; pages are useful for
+# documenting and sharing multiple analyses or workflows. Pages are created using a
+# WYSIWYG editor that is very similar to a word processor.
+#enable_pages = False
+
# Enable the (experimental! beta!) Web API. Documentation forthcoming.
#enable_api = False