Skip to content
Snippets Groups Projects
Commit 51f5a95a authored by Marco Kuhlmann's avatar Marco Kuhlmann
Browse files

Split on tab characters

parent 77b3d867
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ def trees(fp):
yield buffer
buffer = []
else:
columns = line.split()
columns = line.split('\t')
if columns[0].isdigit(): # skip range tokens
buffer.append(columns)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment