1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
#!/usr/bin/env python
# Copyright 2000 by Thomas Sicheritz-Ponten.
# Copyrigth 2016 by Markus Piotrowski.
# All rights reserved.
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
# Created: Sat Dec 2 16:02:17 2000
# thomas@cbs.dtu.dk, http://www.cbs.dtu.dk/thomas
# File: xbb_blastbg.py
from __future__ import print_function
import os
import tempfile
import threading
try:
import tkMessageBox as messagebox # Python 2
except ImportError:
from tkinter import messagebox # Python 3
from Bio.Blast.Applications import (NcbiblastnCommandline,
NcbiblastpCommandline,
NcbiblastxCommandline,
NcbitblastnCommandline,
NcbitblastxCommandline)
class BlastDisplayer(object):
def __init__(self, command_data, text_id=None):
self.command_data = command_data
self.tid = text_id
def RunCommand(self):
self.fh_in, self.infile = tempfile.mkstemp()
self.fh_out, self.outfile = tempfile.mkstemp()
with open(self.infile, 'w+') as f:
f.write('>Name\n')
f.write(self.command_data[0])
blast_program = self.command_data[1]
database = self.command_data[2]
# Check if user supplied additional options and extract them
if self.command_data[3]:
option = self.command_data[3]
options = {}
for x in range(0, len(option.split()) - 1, 2):
options[option.split()[x]] = option.split()[x + 1]
else:
options = {}
args, kwargs = blast_program, {'query': self.infile, 'db': database,
'out': self.outfile}
if blast_program.endswith('blastn'):
blast_cmd = NcbiblastnCommandline(args, **kwargs)
elif blast_program.endswith('blastp'):
blast_cmd = NcbiblastpCommandline(args, **kwargs)
elif blast_program.endswith('blastx'):
blast_cmd = NcbiblastxCommandline(args, **kwargs)
elif blast_program.endswith('tblastn'):
blast_cmd = NcbitblastnCommandline(args, **kwargs)
elif blast_program.endswith('tblastx'):
blast_cmd = NcbitblastxCommandline(args, **kwargs)
else:
return
if options:
try:
for key in options:
blast_cmd.set_parameter(key, options[key])
except ValueError as e:
messagebox.showerror('xbb tools',
'Commandline error:\n\n' + str(e))
self.tid.destroy()
return
self.worker = BlastWorker(blast_cmd)
self.worker.start()
self.UpdateResults()
def UpdateResults(self):
# open the oufile and displays new appended text
self.tid.insert('end', 'BLAST is running...')
while True:
self.tid.update()
if self.worker.finished:
self.tid.delete('1.0', 'end')
break
with open(self.outfile) as fid:
try:
txt = fid.read()
self.tid.insert('end', txt)
self.tid.update()
except:
# text widget is detroyed, we assume the search
# has been cancelled
pass
self.Exit()
def Exit(self):
if os.path.exists(self.outfile):
os.close(self.fh_out)
os.remove(self.outfile)
if os.path.exists(self.infile):
os.close(self.fh_in)
os.remove(self.infile)
del self.worker
class BlastWorker(threading.Thread):
def __init__(self, blast_command):
self.com = blast_command
threading.Thread.__init__(self)
self.finished = 0
def run(self):
try:
self.com()
except Exception as e:
messagebox.showwarning('BLAST error',
'BLAST error:\n\n' + str(e))
self.finished = 1
if __name__ == '__main__':
os.system('python xbb_blast.py' +
' ATGACAAAGCTAATTATTCACTTGGTTTCAGACTCTTCTGTGCAAACTGC')
|