Generic interface for running applications from biopython.
This class shouldn't be called directly; it should be subclassed to
provide an implementation for a specific application.
Methods
|
|
__init__
__str__
set_parameter
|
|
__init__
|
__init__ ( self )
|
|
__str__
|
__str__ ( self )
Make the commandline with the currently set options.
Exceptions
|
|
ValueError( "Parameter %s is not set." % parameter.names )
|
|
|
set_parameter
|
set_parameter (
self,
name,
value=None,
)
Set a commandline option for a program.
Exceptions
|
|
ValueError( "Option name %s was not found." % name )
|
|
|