Package schrodinger :: Package application :: Package desmond :: Module extend_fep_backend :: Class Backend
[hide private]
[frames] | no frames]

Class Backend

object --+
         |
        Backend

The interface, only takes a tgz_fn which contains all files to run the job. Will also contain a pkl which will have a list of Workunit objects

Instance Methods [hide private]
 
__init__(self, tgz_fn)
x.__init__(...) initializes x; see help(type(x)) for signature
 
crunch(self)
Execute the workflow
 
readPkl(self, pkl_fn)
Read the pkl containing the information on the workflow
 
monitorSubjobs(self)
This is monitoring the subjobs and will return when all jobs have completed.
 
runSubjobs(self)
This will run the subjobs
 
runMasterjob(self)
This will run the final master msj

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, tgz_fn)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • tgz_fn (string) - The filename of the tgz file
Overrides: object.__init__