我有一个制作 GUI 的 python 脚本。当在此 GUI 中按下“运行”按钮时,它会像这样从导入的包(我制作的)中运行一个函数
from predictmiP import predictor
class MiPFrame(wx.Frame):
[...]
def runmiP(self, event):
predictor.runPrediction(self.uploadProtInterestField.GetValue(), self.uploadAllProteinsField.GetValue(), self.uploadPfamTextField.GetValue(), \
self.edit_eval_all.Value, self.edit_eval_small.Value, self.saveOutputField)
当我直接从 python 运行 GUI 时,一切正常,程序编写了一个输出文件。然而,当我把它变成一个应用程序时,GUI 会启动,但是当我按下按钮时没有任何反应。predictmiP 确实包含在 build/bdist.macosx-10.3-fat/python2.7-standalone/app/collect/ 中,就像我正在使用的所有其他导入一样(虽然它是空的,但这与所有其他导入相同我有)。
如何获取多个 python 文件或导入的包以与 py2app 一起使用?
我的 setup.py:
""" 这是py2applet生成的setup.py脚本
用法:python setup.py py2app """
from setuptools import setup
APP = ['mip3.py']
DATA_FILES = []
OPTIONS = {'argv_emulation': True}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
编辑:
看起来它起作用了,但它只起作用了一点。从我的 GUI 我打电话
blast.makeBLASTdb(self.uploadAllProteinsField.GetValue(), 'allDB')
# to test if it's working
dlg = wx.MessageDialog( self, "werkt"+self.saveOutputField, "werkt", wx.OK)
dlg.ShowModal() # Show it
dlg.Destroy() # finally destroy it when finished.
blast.makeBLASTdb 看起来像这样:
def makeBLASTdb(proteins_file, database_name):
subprocess.call(['/.'+os.path.realpath(__file__).rstrip(__file__.split('/')[-1])+'blast/makeblastdb', '-in', proteins_file, '-dbtype', 'prot', '-out', database_name])
这个函数被调用,我通过子进程调用的 makeblastdb 确实输出了一个文件。然而,程序并没有继续,
dlg = wx.MessageDialog( self, "werkt"+self.saveOutputField, "werkt", wx.OK)
dlg.ShowModal() # Show it
在接下来的几行中永远不会被执行。