Trees | Indices | Help |
---|
|
General mechanisms to access applications in Biopython.
This module is not intended for direct use (any more). It provides the basic objects for our command line wrappers such as:
|
|||
ApplicationResult Make results of a program available through a standard interface (DEPRECATED). |
|||
AbstractCommandline Generic interface for constructing command line strings. |
|||
_AbstractParameter A class to hold information about a parameter for a commandline. |
|||
_Option Represent an option that can be set for a program. |
|||
_Switch Represent an optional argument switch for a program. |
|||
_Argument Represent an argument on a commandline. |
|
|||
|
|||
|
|||
|
|
|||
__package__ =
|
|
Run an application with the given commandline (DEPRECATED). This expects a pre-built commandline that derives from AbstractCommandline, and returns a ApplicationResult object to get results from a program, along with handles of the standard output and standard error. WARNING - This will read in the full program output into memory! This may be in issue when the program writes a large amount of data to standard output. NOTE - This function is considered to be obsolete, and we intend to deprecate it and then remove it in future releases of Biopython. We now recommend you invoke subprocess directly, using str(commandline) to turn an AbstractCommandline wrapper into a command line string. This will give you full control of the tool's input and output as well. |
Escape filenames with spaces by adding quotes (PRIVATE). Note this will not add quotes if they are already included: >>> print _escape_filename('example with spaces') "example with spaces" >>> print _escape_filename('"example with spaces"') "example with spaces" |
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Wed Dec 16 11:25:16 2009 | http://epydoc.sourceforge.net |