# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User jeremy goecks jeremy.goecks@emory.edu # Date 1278989049 14400 # Node ID 3aaca346bc07a6e13ce48bdee8c27dfd32a3d00b # Parent 7084aafd2e1a77200935a15b64774b0f65ca06f5 Fix typo in 4024:7084aafd2e1a.
--- a/lib/galaxy/datatypes/interval.py +++ b/lib/galaxy/datatypes/interval.py @@ -354,8 +354,8 @@ class BedGraph( Interval ): line = line.rstrip( '\r\n' ) if not line: continue - elts = line.split('\t') - if len( elts ) == 4: + elems = line.split('\t') + if len( elems ) == 4: # Update seq id, start, end. if not seqid: # We can only set the viewport for a single chromosome
galaxy-commits@lists.galaxyproject.org