2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b8ead26aaf2b/ changeset: b8ead26aaf2b user: joachimjacob date: 2013-01-23 11:08:03 summary: Adjusted subtract_query.py to accomodate for empty fields at end of lines. affected #: 1 file diff -r 3c752f2d4d958f34f085f2cc707c503693b4680d -r b8ead26aaf2b3e82334a2b071ad5221b54316e8d tools/new_operations/subtract_query.py --- a/tools/new_operations/subtract_query.py +++ b/tools/new_operations/subtract_query.py @@ -29,9 +29,12 @@ try: line = line.split('\t') line = '\t'.join([line[j] for j in range(begin_col-1, end_col)]) + # removing empty fields, we do not compare empty fields at the end of a line. + line = line.rstrip() lines.add( line ) except: pass else: + line = line.rstrip() lines.add( line ) if i: return (i+1, lines) else: return (i, lines) https://bitbucket.org/galaxy/galaxy-central/commits/57bd06b6e9fa/ changeset: 57bd06b6e9fa user: jgoecks date: 2013-02-07 15:38:56 summary: Merged in joachimjacob/galaxy-central-subtract_query_change (pull request #111) Adjusted subtract_query.py to accomodate for empty fields at end of lines. affected #: 1 file diff -r 14733d29e6dda03a49e5fe67e222480235f1901c -r 57bd06b6e9fa4cb1b6591216b6f4d3010b21f060 tools/new_operations/subtract_query.py --- a/tools/new_operations/subtract_query.py +++ b/tools/new_operations/subtract_query.py @@ -29,9 +29,12 @@ try: line = line.split('\t') line = '\t'.join([line[j] for j in range(begin_col-1, end_col)]) + # removing empty fields, we do not compare empty fields at the end of a line. + line = line.rstrip() lines.add( line ) except: pass else: + line = line.rstrip() lines.add( line ) if i: return (i+1, lines) else: return (i, lines) 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.