A Python package to calculate pKa values for proteins
Project description
INSTALLATION (using PyPI)
If you would like to use pKa-ANI in a python script, simply use the command below:
pip install pkaani
Python script usage
The snippet below shows how to use the calculate_pka function within a python script - the input argument is a list of strings which are PDB file names in the working directory. Given a list of PDBs titled "1brs.pdb" and "6oge_de.pdb":
from pkaani.pkaani import calculate_pka as calculate_pkaani
pKas = calculate_pkaani(["1brs.pdb","6oge_de.pdb"])
Command line usage
Note that command line usage (e.g. pkaani -i 1FDL.pdb on the command line) will not work with the simple pip install given above.
Command line usage performs energy minimization on the structure before the pKa calculation, which requires ambertools and can be installed as given below (only works with Python versions <3.14)
conda create -n pkaani python=3.13
conda activate pkaani
conda install conda-forge::ambertools
Note that this necessitates a numpy version earlier than 2.0, so if you are running into a numpy error use the following command to alleviate it:
pip install "numpy<2"
Example command line usages:
- If PDB file doesnt exist, it is downloaded and prepared for pKa calculations.
pkaani -i 1BNZ
pkaani -i 1BNZ.pdb
- Multiple files can be given as inputs
pkaani -i 1BNZ,1E8L
- If a specific directory is wanted:
pkaani -i path_to_file/1BNZ
pkaani -i path_to_file/1BNZ,path_to_file/1E8L
Arguments:
-h: Help
-i: Input files. Inputs can be given with or without file extension (.pdb).
If PDB file is under a specific directory (or will be downloaded) the path
can also be given as path_to_file/PDBFILE. Multiple PDB files can be given
by using "," as separator (i.e. pkaani -i 1BNZ,1E8L).
INSTALLATION (from source code)
Navigate to this repository for the source code for this pyPI upload: https://github.com/adnaksskanda/pKa-ANI/tree/pyPI_upload
Prior to the installation of pKa-ANI, users should make sure they have installed conda.
To install pKa-ANI, navigate to the directory of the source that you've downloaded and;
conda env create -f pkaani_env.yaml
This will create a conda environment named pkaani and install all required packages.
After the environment is created, activate the environment and install the package.
conda activate pkaani
pip install .
PREREQUISITES:
- miniconda/anaconda
If pkaani_env.yaml is not used, users should make sure the following packages are installed.
- python>=3.10
- numpy
- scipy
- pytorch
- torchani==2.2.0
- scikit-learn==1.6.1
- ase
- joblib
- ambertools
- setuptools
Other notes
pKa-ANI requires PDB files to have H atoms that are added with default ionization states of residues: ASP, GLU, LYS, TYR, HIE.
Due to this reason, input PDB file(s) are prepared before the calculation of pKa values (output PDB file 'PDBID_pkaani.pdb').
We would like to warn users, that our models are trained to predict pKa values for apo-proteins. Due to this, any residue that is not an aminoacid is removed from PDB file(s) during the preparation.
CITATION
Gokcan, H.; Isayev, O. Prediction of Protein p K a with Representation Learning. Chem. Sci. 2022, 13 (8), 2462–2474. https://doi.org/10.1039/D1SC05610G.
LICENSING
Please read LICENSE file.
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 pkaani-0.1.14.tar.gz.
File metadata
- Download URL: pkaani-0.1.14.tar.gz
- Upload date:
- Size: 23.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba82adea4ef05ff5602b25c15b2bbbfc43e3662491e84d88a6831f1acec7d08b
|
|
| MD5 |
730d01c72cfd332ca5c91d365f4664ea
|
|
| BLAKE2b-256 |
e6c0a8bbcaa3502d19751c42d9ef3fc8dec37a3d2d1add7c6a052898a09303f4
|
File details
Details for the file pkaani-0.1.14-py3-none-any.whl.
File metadata
- Download URL: pkaani-0.1.14-py3-none-any.whl
- Upload date:
- Size: 24.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35a079ff95d22d75951f2dfa496434634e53affcc476b4dc7eb6872a4c34cb9e
|
|
| MD5 |
96ab0b9b3abfeed8ecd37de532e96990
|
|
| BLAKE2b-256 |
e1e04a21a053cf7d1496338970b6ad43a94e228d6b81fcd1497ddf6e1226eb3b
|