Skip to content

Commit

Permalink
Merge pull request #3044 from blankenberg/gff-filter-tool-fix
Browse files Browse the repository at this point in the history
Fix GFF attribute filtering tool broken in #2983
  • Loading branch information
dannon committed Oct 13, 2016
2 parents 277727a + 32bc17c commit 0062eac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/filters/gff/gff_filter_by_attribute.py
Expand Up @@ -125,9 +125,9 @@ def get_value(name, a_type, values_dict):
%s
if %s:
lines_kept += 1
print >> out, line
print( line, file=out )
except Exception as e:
print e
print( e )
skipped_lines += 1
if not invalid_line:
first_invalid_line = i + 1
Expand Down

0 comments on commit 0062eac

Please sign in to comment.