Skip to content

PDB-REDO/cif-tools

trunk
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
doc
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

cif-tools

The cif-tools suite of programs are tools you can use to examine and manipulate mmCIF and PDB files.

Requirements

The tools are based on libcif++ and the code is written in modern C++ so you need a compiler capable of handling C++17 code.

Building

Make sure you install libcif++ first before building. You will also need to install libcfp.

After that, building should be as easy as typing:

git clone https://github.com/PDB-REDO/cif-tools.git
cd cif-tools
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build .
cmake --install .