PyOpenMS offers Python bindings to a large part of the OpenMS API.
We offer pre-built packages on PyPI (pyopenms package), which does not require compilation. If you want to use pyOpenMS in production, we recommend to follow the binary installation instructions specific for your platform on PyPI.
In order to configure and build pyOpenMS successfully from source, you will need to follow these steps. Please note that compiling pyOpenMS requires substantial memory resources. Currently, Python 2.7 as well as 3.x are officially supported.
Install Python (preferably, 2.7 but it may run also run with Python 2.6). Alternatively, also Python 3.x will work and the same build instructions apply. Use Anaconda on Microsoft Windows.
On Microsoft Windows: you need the 64 bit C++ compiler from Visual Studio 2008. This is important, else you get a different clib than Python 2.7 is built with, and pyOpenMS will crash on import.
The easiest way to install all necessary Python packages on which pyOpenMS depends is through virtualenv:
If this worked for you, you can directly skip to the "configure" step. On Microsoft Windows, you will have virtualenv if you install through Anaconda.
If not using virtualenv, install first setuptools, see: https://pypi.python.org/pypi/setuptools (you will need at least version 0.12)
If not using virtualenv, install pip and use it to install other required Python modules
If Cython doesn't get installed, install it with
Note that when using pip without root permissions, you have to add a path prefix: –install-option="--prefix=/path/to/local/python/"
If not using virtualenv, install numpy next:
Configure OpenMS with pyOpenMS: execute cmake as usual, but with parameters "-DPYOPENMS=ON". Also, if using virtualenv, add "-DPYTHON_EXECUTABLE:FILEPATH=`which python`" to ensure that the correct Python executable is used.
On windows add: "-D CMAKE_BUILD_TYPE=Release" as the standard python27.dll is built in release mode.
Build pyOpenMS (now there should be pyOpenMS specific build targets):
on Linux, ensure that the libOpenMS.so is in your $LD_LIBRARY_PATH (it needs to be accessible for Python)
Run the Python specific tests to make sure that everything went well
run mem leak test:
Optionally: If you want to install locally:
If you want to build Python installers:
or
you find the built installer files in pyOpenMS/dist
General concept of how the wrapping is done (all files are in src/pyOpenMS/
):
pxds/
folder.addons/
folder. Autowrap will create an output file at pyopenms/pyopenms.pyx
which can be interpreted by Cython.pyopenms/pyopenms.pyx
to C++ code at pyopenms/pyopenms.cpp
import pyopenms
Maintaining existing wrappers: If the C++ API is changed, then pyOpenMS will not build any more. Thus, find the corresponding file in the pyOpenMS/pxds/
folder and adjust the function declaration accordingly.
To wrap a new OpenMS class: Create a new "pxd" file in the folder ./pxds
. As a small example, look at the CVTerm.pxd
to get you started. Start with the following structure:
ClassName:
instead of ClassName(DefaultParamHandler)
to wrap a class that does not inherit from another class and also remove the two comments regarding inheritance below that line.cimport
and not Python import
DataValue
getValue()
and make sure you cimport
all corresponding classes. Replace std::vector
with the corresponding vector from libcpp.vector
(see for example PepXMLFile.pxd
)item0.inst = shared_ptr[_ClassName](new _ClassName(deref(it_terms))) Call with wrong number of arguments
A slightly more complicated class could look like this, where we demonstrate how to handle templated classes and static methods:
Here the copy constructor will not be wrapped but the Cython parser will import it from C++ so that is is present (using wrap-ignore). The operator[]
will return an object of type X
or <t>Y</t> depending on the template argument and contain a guard that the number may not be exceed size()
.
The wrapping of iterators allows for iteration over the objects inside the Classname
container using the appropriate Python function (here __iter__
with the indicated return type <t>T</t>).
The wrap-as
keyword allows the Python function to assume a different name.
Note that pointers to abstract base classes can be passed as arguments but the classes have to be known at compile time, e.g. the function process
takes a pointer to AbstractBaseClass
which has two known implementations AbstractBaseClassImpl1
and AbstractBaseClassImpl2
. Then, the function needs to declared and overloaded with both implementations as arguments as shown above.
A more complex examples requires some hand-written wrapper code (pxds/Classname.pxd), for example for singletons that implement a getInstance()
method that returns a pointer to the singleton resource. Note that in this case it is quite important to not let autowrap take over the pointer and possibly delete it when the lifetime of the Python object ends (leading to Segfaults in Python).
Here the wrap-manual-memory
keywords indicates that memory management will be handled manually and autowrap can assume that a member called inst
will be provided that implements a gets()
method to obtain a pointer to an object of C++ type Classname
.
We then have to provide such an object (addons/Classname.pyx):
Note how the manual wrapping
of the process functions allows us to access the inst
pointer of the argument as well as of the object itself, allowing us to call C++ functions on both pointers. This makes it easy to generate the required iterators and process the container efficiently.
Further considerations and limitations:
Precursor.pxd
AASequence.iadd
in AASequence.pxd
shared_ptr[Spectrum]
. Use from smart_ptr cimport shared_ptr
as import statementThese hints can be given to autowrap classes (also check the autowrap documentation):
__hash__
(see Residue.pxd)These hints can be given to autowrap functions (also check the autowrap documentation):
Not all code can be wrapped automatically (yet). Place a file with the same (!) name in the addons folder (e.g. myClass.px in pxds/ and myClass.pyx in addons) and leave two lines empty on the top (this is important). Start with 4 spaces of indent and write your additional wrapper functions, adding a wrap-ignore comment to the pxd file. For some examples, look into the src/pyOpenMS/addons/ folder:
Make sure that you _always_ declare your objects (all C++ and all Cython objects need to be declared) using cdef
Type name. Otherwise you get Cannot convert ... to Python object
errors.
OpenMS / TOPP release 2.3.0 | Documentation generated on Tue Jan 9 2018 18:22:05 using doxygen 1.8.13 |