Skip to content

Commit 278f276

Browse files
committed
Fix bedGraph2BSseq.py
1 parent d985e43 commit 278f276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auxiliary/bedGraph2BSseq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
lines = []
2424
for f in files :
2525
line = f.next()
26-
if(line.startswith('track')) :
26+
if(line[0].startswith('track')) :
2727
line = f.next()
2828
lines.append([line[0],int(line[1]), int(line[2]), int(line[4]), int(line[5])])
2929

0 commit comments

Comments
 (0)