Description: Pass "-blastdb_version 4" to makeblastdb to work properly on 32 bit systems
Author: Iain Lane <laney@debian.org>

--- kaptive-0.7.0.orig/kaptive.py
+++ kaptive-0.7.0/kaptive.py
@@ -1797,7 +1797,7 @@ def makeblastdb(fasta):
         gunzip.stdout.close()
         _, err = makeblastdb_process.communicate()
     else:  # plain text
-        makeblastdb_command = ['makeblastdb', '-dbtype', 'nucl', '-in', fasta]
+        makeblastdb_command = ['makeblastdb', '-blastdb_version', '4', '-dbtype', 'nucl', '-in', fasta]
         makeblastdb_process = subprocess.Popen(makeblastdb_command, stdout=subprocess.PIPE,
                                                stderr=subprocess.PIPE)
         _, err = makeblastdb_process.communicate()
