Thin Python wrapper for NextGenPB
Project description
ngpb4py
ngpb4py is a thin Python wrapper for NextGenPB.
Features
- Typed configuration, input, runner, and result objects
- Pluggable execution backends with Apptainer as the default runtime
- Structured parsing for documented log sections and potential output files
- Per-run scratch directories with automatic cleanup on successful runs
Installation
Install the package from the repository root:
uv pip install -e .
If you prefer pip, the equivalent editable install is:
pip install -e .
For contributors who want to run the test suite, install the development dependencies as well:
uv sync --group dev
Quick Start
from ngpb4py import NgpbConfig, NgpbRunner
config = NgpbConfig.defaults()
result = NgpbRunner(nproc=16).run(
config,
pqr="molecule.pqr",
workdir="/tmp/ngpb-scratch",
verbose=3,
)
print(result.log.grid.total_nodes)
print(result.log.energies.total_electrostatic_energy_kt)
phi_surf = result.parsed_outputs["phi_surf.txt"]
if phi_surf:
print(phi_surf.coordinates[:10])
print(phi_surf.potentials[:10])
Running Examples
The repository includes runnable examples under examples/ that mirror the
NextGenPB tutorial.
examples/exercise1/examples/exercise2/examples/exercise3/examples/exercise4/
Run an example from the repository root with Python after installing the package:
python examples/exercise1/exercise1.py
Testing
The test suite uses pytest, which is not installed by default with the base
package. Install the development dependencies first:
uv sync --group dev
Then run the full test suite:
uv run --group dev python -m pytest
Runtime Backends
By default, NgpbRunner uses Apptainer with the published SIF image:
https://github.com/concept-lab/NextGenPB/releases/download/NextGenPB_v1.0.0/NextGenPB.sif
If you prefer Docker, build or provide a Docker image and pass the image name to
NgpbRunner.
To add flags directly to apptainer exec, pass container_exec_args:
runner = NgpbRunner(
nproc=4,
container_exec_args=["--nv", "--containall"],
)
Working With Results
NgpbResult exposes the parsed NextGenPB terminal log through result.log.
Each documented section is available as a typed object when present in the
output:
result.log.systemresult.log.domainresult.log.surfaceresult.log.gridresult.log.solverresult.log.energies
Only parsed values are exposed on these section objects. The parser does not
attach raw per-section log text to result.log.*.
When NextGenPB writes any of the following files, NgpbResult parses them and
exposes them through result.parsed_outputs:
phi_surf.txtphi_nodes.txtphi_on_atoms.txt
Each parsed file is returned as a PotentialSampleSet with:
coordinates:List[List[float]], where each item is[x, y, z]potentials:List[float], where each item matches the corresponding coordinate
Run Behavior and Verbosity
The workdir argument is treated as a scratch parent directory. Each call to
run() creates a unique child directory so concurrent runs do not collide.
Successful runs are cleaned up by default. To keep generated files, logs, and
staged inputs on disk, pass keep_files=True. On failures, the per-run
directory is kept automatically for debugging.
Use the runner verbose argument, or set NgpbRunner(verbosity=...), to
control wrapper logging:
0: warnings and errors only1: high-level run progress2: debug logging from the wrapper3: debug logging plus streaming backend output when supported
This affects the wrapper logs printed by ngpb4py. Parsed terminal output
remains available afterwards through result.log.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ngpb4py-0.1.0.tar.gz.
File metadata
- Download URL: ngpb4py-0.1.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b13282f7617c517bebb2df9de393fc01ecc6d3e5133cd55450e565194e38dfc
|
|
| MD5 |
0065d062b56ba8ae99fc2504fd98a9cc
|
|
| BLAKE2b-256 |
21b95587befd201776bcdddb7ff9b2a2458bbd3b04984ecf42413e61a53fb0e0
|
File details
Details for the file ngpb4py-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ngpb4py-0.1.0-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
255f6d578291d622ff079e1a5b1a5d831836b78fd6c6de880b7c3c36733d4895
|
|
| MD5 |
18d6c7934308d0a61ef48c0b4d279d8c
|
|
| BLAKE2b-256 |
34b015bea07adeb9ac57cf7f10cdef329cbb2d25df19d175e2a21ac8a60bc98a
|