Support
Feature Requests
pyOpenMS is an evolving project. We are happy to learn about missing features you would like to see in pyOpenMS.
- Feel free to open an issue on GitHub issue
to request a novel feature.
Troubleshooting
If you encounter a problem running pyOpenMS feel free to contact us by opening a GitHub issue or the OpenMS Gitter chat channel.
Please provide information on what pyOpenMS version you have installed. You can check if importing pyOpenMS works and print your pyOpenMS version with:
1from pyopenms import *
2
3print("Version: " + VersionInfo.getVersion())
4print("OpenMP: " + str(OpenMSBuildInfo.isOpenMPEnabled()))
5print("Build type: " + OpenMSBuildInfo.getBuildType())
6print("Architecture: " + OpenMSOSInfo.getBinaryArchitecture())