Skip to content

Commit

Permalink
fix slight issue with column count
Browse files Browse the repository at this point in the history
  • Loading branch information
joelarmstrong committed Oct 10, 2013
1 parent a6a683b commit 0ef8066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assemblyHub/bedTrack.py
Expand Up @@ -208,7 +208,7 @@ def readBedDir(indir):
def getFileColumnCount(file):
f = open(file, 'r')
firstline = f.readline()
items = firstline.split()
items = firstline.split('\t')
f.close()
return len(items)

Expand Down

0 comments on commit 0ef8066

Please sign in to comment.