https://github.com/soedinglab/pdbx
pdbx is a parser module in python for structures of the protein data bank in the mmcif format
https://github.com/soedinglab/pdbx
Last synced: 11 months ago
JSON representation
pdbx is a parser module in python for structures of the protein data bank in the mmcif format
- Host: GitHub
- URL: https://github.com/soedinglab/pdbx
- Owner: soedinglab
- Created: 2016-08-10T17:05:56.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-08-09T05:46:38.000Z (almost 2 years ago)
- Last Synced: 2025-04-05T00:51:16.148Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 1.99 MB
- Stars: 26
- Watchers: 6
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pdbx
Proper recognition to the [Protein Data Bank](http://mmcif.wwpdb.org/docs/sw-examples/python/html/index.html) where this library for protein structures in the mmCIF format initially came from. We modified the original library to support python3. This fork is used by scripts in the HHsuite [on GitHub](https://github.com/soedinglab/hh-suite).
## Requirements
* python3
## Installation
mkdir build
cd build
### For user specific installation:
cmake -DUserInstallOption=ON ../
make install
### For global installation (requires root rights):
cmake ../
sudo make install