def run(self):
"""Summary
Perform a directed mutagenesis scan on the initialized class.
Returns
-------
None
Outputs text to STDOUT when run is complete, will be made optional
in the future.
"""
start = ti.default_timer()
self.logs = []
self.genPDB()
self.genPQR()
self.calcAPBS()
self.calcCoulomb()
stop = ti.default_timer()
print '%s:\tAESOP directed mutagenesis scan completed' \
' in %.2f seconds' % (self.jobname, stop - start)
warn = self.checkwarnings()
err = self.checkerrors()
if warn != 0:
print 'WARNINGS detected, please view log files!'
if err != 0:
print 'ERRORS detected, please view log files!'
评论列表
文章目录