diff --git a/source/_static/code/parse_blast.py b/source/_static/code/parse_blast.py
index 2a191373635af6a0defc4dc7d6e8dabe6c624d20..ca378316ec14a2952c47dd503ec245af6d4c1d22 100644
--- a/source/_static/code/parse_blast.py
+++ b/source/_static/code/parse_blast.py
@@ -45,5 +45,5 @@ if __name__ == '__main__':
     table_sorted = sorted(table_hits, key=itemgetter(2), reverse=True)
     # alternative
     # table_sorted = sorted(table, key = lambda x : x[2], reversed = True)
-    write_blast_output(table_hits, 'blast_sorted.txt')  
+    write_blast_output(table_sorted, 'blast_sorted.txt')