Skip to content

Commit

Permalink
Update fix_relab_mpa4.py
Browse files Browse the repository at this point in the history
  • Loading branch information
abmiguez authored Mar 11, 2024
1 parent f6ae69c commit b30301b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaphlan/utils/fix_relab_mpa4.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def fix_relab_mpa4(input, output):
with open(output, 'w') as wf:
for line in rf:
if line.startswith('#mpa_v'):
wf.write('{}_fixed\n'.format(line.strip())
wf.write('{}_fixed\n'.format(line.strip()))
elif line.startswith('#'):
wf.write(line)
else:
Expand Down

0 comments on commit b30301b

Please sign in to comment.