in Example-Project/utils.py [0:0]
def initialize_output(outfile_name):
'''
Writes a new file to disk. Adds two header cols.
'''
with open(outfile_name, 'w') as f:
# writer = csv.writer(f, delimiter='\t')
f.write(' ')
return