No project description provided
Project description
bindtools
bindtools is a Python library for supramolecular chemistry designed for modeling, fitting, and analyzing binding equilibria. It provides numerical and analytical solvers for complex chemical systems, robust parameter optimization, and Bayesian parameter estimation.
Features
- Speciation Solvers:
- Numerical: A Newton-Raphson solver (
DoNRandgetConcs) JIT-compiled withnumbafor fast operation. - Analytical: High-speed analytical solvers for common topologies (e.g.,
1:1,1:2,2:1fast exchange).
- Numerical: A Newton-Raphson solver (
- Flexible Optimization:
- Uses
lmfitto manage model parameters (binding constants, physical observables). - Handles various experimental data including NMR integrations, chemical shifts (NMR
deltaH/deltaF), and linear concentration-weighted observables (UV-vis / fluorescence).
- Uses
- Bayesian Inference & Uncertainty Quantification:
- Uses
emceefor Markov Chain Monte Carlo (MCMC) sampling. - Generates trace/chain convergence plots and corner plots using
cornerandarviz. - MCMC runs can be serialized and stored as HDF5 files for future analysis.
- Uses
Installation
bindtools is available on PyPI. You can install it directly using pip:
pip install bindtools
Using Conda / Mamba (Recommended for Virtual Environments)
To avoid dependency conflicts, you can set up a dedicated environment with Conda/Mamba and install bindtools inside it:
# 1. Create and configure environment with base scientific dependencies
mamba create -n binding -c conda-forge \
python jupyter tqdm ipython uncertainties lmfit scipy numpy emcee tqdm numba corner matplotlib numdifftools
# 2. Activate the environment
conda activate binding
# 3. Install bindtools via pip
pip install bindtools
Quick Start
1. Speciation (Solving Concentration Problems)
You can compute the equilibrium concentration of free species (components and complexes) given initial total concentrations, a stoichiometry matrix, and equilibrium constants ($K$ values).
import numpy as np
from bindtools import binding as bd
# Define total concentrations: 50 data points of Host (1e-3 M) and Guest (0 to 1e-2 M)
component_concs = np.zeros((50, 2))
component_concs[:, 0] = 1e-3
component_concs[:, 1] = np.linspace(0, 1e-2, 50)
# Stoichiometry / Equilibrium Matrix
# Row 0: Host balance, Row 1: Guest balance
# Columns represent: [Free Host, Free Guest, Host-Guest Complex (1:1)]
eq_mat = np.array([
[1, 0, 1], # [H]_tot = [H] + [HG]
[0, 1, 1] # [G]_tot = [G] + [HG]
])
# log10(K) values for each species.
# Constants for free components are fixed at logK = 0.
# The complex (HG) has logK = 4 (K = 10,000 M^-1).
logK = np.array([0, 0, 4])
# Solve for concentrations at each point
results = []
for total_concs in component_concs:
spec_concs = bd.getConcs(eq_mat, total_concs, logK)
results.append(spec_concs)
results = np.array(results)
print("First point [H, G, HG]:", results[0])
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
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 bindtools-0.2.1.tar.gz.
File metadata
- Download URL: bindtools-0.2.1.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bb9ef5c82384a592d6b3ab734516f850c27f8f8ad1c4e6d6159bcf3362f2cbc
|
|
| MD5 |
e198e06e43281137051d10e8f74a5e76
|
|
| BLAKE2b-256 |
20e94c1f8f0aa370759a51c6368845992887b9674acf4c54628764c7a4559c68
|
File details
Details for the file bindtools-0.2.1-py3-none-any.whl.
File metadata
- Download URL: bindtools-0.2.1-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.22 {"installer":{"name":"uv","version":"0.11.22","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":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f828930e3d9be2f33e394206c6587cbf385858f544925e5825150ccf1459f8d
|
|
| MD5 |
727cccbdc8306e588aa0a464424f4e0c
|
|
| BLAKE2b-256 |
421eccedf66767f02d3bf37fc3cdb7b19d42e9d919c5a45d06929f009b808013
|