Skip to content
Snippets Groups Projects
Commit 2461c9f5 authored by Bertrand  NÉRON's avatar Bertrand NÉRON
Browse files

:art: fix typo in parse_blast.py

parent 8b457173
No related branches found
No related tags found
No related merge requests found
Pipeline #133077 passed
......@@ -35,7 +35,7 @@ def write_blast_output(hits, output_file):
:type output_file: string
"""
with open(output_file, 'w') as output:
for row in table_sorted:
for row in hits:
row = [str(x) for x in row]
output.write("\t".join(row) + "\n")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment