add missing newline to header for postResult

This commit is contained in:
zhangc43 2016-07-18 12:29:12 -04:00
parent 48886e51c7
commit 0a2d5e4c2a
1 changed files with 87 additions and 87 deletions

View File

@ -1060,7 +1060,7 @@ for incCount,position in enumerate(locations): # walk through locations
file = open(outFilename,'w')
fileOpen = True
file.write('2\theader\n')
file.write(scriptID + '\t' + ' '.join(sys.argv[1:]))
file.write(scriptID + '\t' + ' '.join(sys.argv[1:]) + '\n')
headerWritten = False
file.flush()