This is a Python package to assist in handling mmCIF and BinaryCIF files compliant with the ModelCIF extension. It works with Python 2.7 or Python 3.
Please see the documentation or some worked examples for more details.
If you are using Anaconda Python, install with
conda install -c conda-forge modelcif
On a Fedora or RedHat Enterprise Linux box, install with
dnf copr enable salilab/salilab; dnf install python3-modelcif
Alternatively, install with pip:
pip install modelcif
To build and install from a clone of the GitHub repository, first build and install version 1.7 or later of the python-ihm module. Then run:
python setup.py build
python setup.py install
If you want to read or write BinaryCIF files, you will also need the Python msgpack package.
There are a number of testcases in the test
directory. Each one can be run
like a normal Python script to test the library. They can also be all run at
once using nose
or pytest.