galaxy-dist commit 41089d12cdd9: Fix typo in documentation of GFFReaderWrapper.
# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User jeremy goecks <jeremy.goecks@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
participants (1)
-
commits-noreply@bitbucket.org