Skip to content

Commit

Permalink
v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
edgraham committed Mar 25, 2021
1 parent 0829364 commit abf77a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils/makeFileTabDelimited.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#! /usr/bin/env python
import sys
import pandas as pd
handle = open(sys.argv[1],"r")
readlines = [filter(None,line.replace("\n","").split(" ")) for line in handle.readlines()]
print '\n'.join(map('\t'.join,readlines))
print('\n'.join(map('\t'.join,readlines)))

0 comments on commit abf77a8

Please sign in to comment.