__init__(self,
f_parm,
f_crd,
f_template=None,
s=0,
e=None,
step=1,
**kw)
(Constructor)
| source code |
Create Executor. *name* must point to an existing program
configuration unless *strict*=0. Executor will create a program input
from the template and its own fields and put it into f_in. If f_in but no
template is given, the unchanged f_in is used as input. If neither is
given, the program is called without input. If a node is given, the
process is wrapped in a ssh call. If *nice* != 0, the process is
preceeded by nice. *cwd* specifies the working directory. By default,
this setting is taken from the configuration file which defaults to the
current working directory.
-
- Parameters:
f_parm (str ) - path to amber topology file
f_crd (str ) - path to amber trajectory file
f_template (str ) - alternative ptraj input template (default: None)
s (int ) - start frame (default: 0, first)
e (int ) - end frame (default: None, last)
step (int ) - frame offset (default: 1, no offset )
kw (key=value pairs :
debug - 0|1, keep all temporary files (default: 0)
verbose - 0|1, print progress messages to log (log != STDOUT)
node - str, host for calculation (None->local) NOT TESTED
(default: None)
nice - int, nice level (default: 0)
log - Biskit.LogFile, program log (None->STOUT) (default: None)
) - additional key=value parameters for Executor:
- Overrides:
Executor.Executor.__init__
|