Skip to content

Commit

Permalink
Fix bedGraph2BSseq.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 committed Mar 18, 2014
1 parent d985e43 commit 278f276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auxiliary/bedGraph2BSseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
lines = []
for f in files :
line = f.next()
if(line.startswith('track')) :
if(line[0].startswith('track')) :
line = f.next()
lines.append([line[0],int(line[1]), int(line[2]), int(line[4]), int(line[5])])

Expand Down

0 comments on commit 278f276

Please sign in to comment.