From 2461c9f5000c0206a9d870bf2c50684d0cf19a49 Mon Sep 17 00:00:00 2001 From: Bertrand Neron <bneron@pasteur.fr> Date: Tue, 18 Jun 2024 13:50:42 +0200 Subject: [PATCH] :art: fix typo in parse_blast.py --- source/_static/code/parse_blast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_static/code/parse_blast.py b/source/_static/code/parse_blast.py index 1429924..2a19137 100644 --- a/source/_static/code/parse_blast.py +++ b/source/_static/code/parse_blast.py @@ -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") -- GitLab