Skip to content

Commit

Permalink
fix bug (misformating)
Browse files Browse the repository at this point in the history
  • Loading branch information
liguowang committed Jul 29, 2020
1 parent 846700c commit 10f7bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cpat.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def main():
for l in open((options.out_file + '.ORF_prob.tsv'), 'r'):
l = l.strip()
if l.startswith('ID'):
print ("seq_ID\tORF_ID\t" + l, file=BEST)
print ("seq_ID\t" + l, file=BEST)
continue
f = l.split('\t')
seq_id = f[0].split('_ORF_')[0]
Expand Down

0 comments on commit 10f7bbb

Please sign in to comment.