Skip to main content

Python bindings for BALL — Biochemical ALgorithms Library

Project description

BALL Python bindings (pybind11)

Minimal Python access to BALL's force-field evaluation surface. Wraps just enough to compute single-point AMBER and CHARMM-EEF1 energies on a PDB and return per-component breakdowns.

Originating need: serve as an oracle source for the proteon EVIDENT manifest, replacing the frozen BALL_CRAMBIN_RAW reference values in tests/oracle/test_ball_energy.py with live regeneration, and unblocking the open forcefield_charmm19_internal claim by enabling a CHARMM-EEF1 component oracle.

Surface

import ball

amber = ball.amber_energy("crambin.pdb")
# -> {bond_stretch, angle_bend, torsion, nonbonded, total, n_atoms}

charmm = ball.charmm_energy("crambin.pdb", use_eef1=True)
# -> {bond_stretch, angle_bend, torsion, improper_torsion,
#     vdw, nonbonded, solvation, total, n_atoms, use_eef1}

nonbonded_cutoff defaults to 1e6 (effectively NoCutoff), matching the convention proteon uses on its own side of the comparison.

Build

# from the repo root, after Qt6 / Boost / Eigen3 / FFTW3 dev libs are
# installed (libqt6base-dev libqt6core5compat6-dev libboost-all-dev
# libeigen3-dev libfftw3-dev on Ubuntu 22.04 / Debian bookworm):

mkdir build && cd build
cmake -DBALL_BUILD_PYTHON=ON ..
cmake --build . -j

# ball.cpython-3X-x86_64-linux-gnu.so lands in build/python/.
# At runtime the bindings need three env vars set:
#   PYTHONPATH       — find the .so
#   LD_LIBRARY_PATH  — find libBALL.so
#   BALL_DATA_PATH   — find the force-field parameter files
#                      (Amber/, CHARMM/, MMFF94/, ... — these live
#                       at the repo's `data/` directory)
PYTHONPATH=build/python \
LD_LIBRARY_PATH=build/lib \
BALL_DATA_PATH=$(pwd)/../data \
    python -c 'import ball; print(ball.amber_energy.__doc__)'

The wheel build (pip install . via scikit-build-core, see pyproject.toml) bundles the data files into the wheel and resolves BALL_DATA_PATH at install time, so end users of the published wheel do not set env vars manually.

The pybind11 dependency is fetched via CMake FetchContent at configure time (pinned to v2.13.6); no system pybind11 install required.

Test

cd build
PYTHONPATH=python ctest -R python_smoke --output-on-failure
# or directly:
PYTHONPATH=python python -m pytest ../python/tests -v

The smoke tests look for a 1crn.pdb fixture in this order:

  1. $BALL_TEST_CRAMBIN env var (if set)
  2. /scratch/TMAlign/proteon/test-pdbs/1crn.pdb (the proteon staging-parent layout)
  3. <repo>/test/data/1crn.pdb
  4. <repo>/data/1crn.pdb

Tests skip rather than fail when no fixture is locatable.

Known issues

These are component-level mapping bugs in the current bindings, not pipeline issues. The Python-side smoke test catches them via pytest.approx-style assertions in proteon's oracle test layer; here they are documented for whoever picks up the next iteration:

  • angle_bend = 0 on both AMBER and CHARMM. Real bend terms on crambin should be tens of kJ/mol. Likely an option flag at setup() that gates bend-term registration; the binding currently passes only the cutoff options.
  • CHARMM torsion == improper_torsion. Both report 39.7 kJ/mol on crambin in current testing — they should differ. Either getTorsionEnergy() already includes impropers (in which case the dict key is misleading) or one of the getters is reading the wrong component sum. Needs a quick read of BALL's CHARMM force-field initialisation to confirm.

Out of scope (for now)

  • Minimization, dynamics, Monte Carlo
  • NMR, QSAR, docking
  • Trajectory I/O (DCD, XTC)
  • Force-field parameter introspection
  • Class-level bindings (e.g. ball.System, ball.Atom); the current binding is functional only

These can land later if a downstream consumer needs them. The current binding is sized to one job — sourcing oracle energies for proteon — and stays narrow on purpose. New bindings ship through the same wheel pipeline (pyproject.toml → scikit-build-core → cibuildwheel CI) so adding them is a small per-PR cost.

Why pybind11 and not the original SIP bindings

The original SIP bindings under source/PYTHON/EXTENSIONS/ were removed in the zomball modernization line (commits 1–5 on this fork). They were unmaintained, did not build with modern Qt/Boost, and covered far more surface than any current consumer needs. Restarting on pybind11 against the modernized C++ tree is cheaper than reviving SIP and produces a binding that matches today's Python packaging conventions.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ball_py-0.1.0a0-cp313-cp313-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

ball_py-0.1.0a0-cp312-cp312-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

ball_py-0.1.0a0-cp311-cp311-manylinux_2_34_x86_64.whl (61.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

File details

Details for the file ball_py-0.1.0a0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for ball_py-0.1.0a0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1b1e0cbc85dbfc861488848d0727adbbdd605f217a9ca93966a6210389ed14b7
MD5 6c41cd34db9c28f8100e27ad791e556f
BLAKE2b-256 6515f91a3900e4b42f00f6953a3fcec3ad43e35148fd6366f936e9f55c373bbc

See more details on using hashes here.

File details

Details for the file ball_py-0.1.0a0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for ball_py-0.1.0a0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f40766de8c00ef415ebe81547503f17d02501a03f57fe3d8ff584338a13f3aa6
MD5 9501f85b42a6e774e0906e238ef7347d
BLAKE2b-256 45a284da4b6a8cea67edef76b16b0a10ddd6d9f0a47616744a3f83e0c15e9f38

See more details on using hashes here.

File details

Details for the file ball_py-0.1.0a0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for ball_py-0.1.0a0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 663ca148201dc90844de54043973de96ded626ff97aaab6f579f22b1fcf9a32c
MD5 a79829b9a0270c82cd831ac7a186d8a5
BLAKE2b-256 3e54e6a516de04566611aee6d554e8e8bff88b8fb343570157c7d8c752f4e2c8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page