1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Tortoize
========
[](https://github.com/PDB-REDO/tortoize/actions)
Application to calculate ramachandran z-scores.
Building
--------
The easiest way to install tortoize is by installing [CCP4](https://www.ccp4.ac.uk/download/index.php)
It is possible to install tortoize on Linux without having CCP4. In that case you will have install some dependencies first. On Debian this boils down to:
```console
sudo apt-get update && sudo apt-get install libcatch2-dev nlohmann-json3-dev libeigen3-dev
```
And on Ubuntu, slightly different:
```console
sudo apt-get update && sudo apt-get install catch2 nlohmann-json3-dev libeigen3-dev
```
After that, building and installing should be as simple as:
```console
git clone https://github.com/PDB-REDO/tortoize.git
cd tortoize
cmake -S . -B build
cmake --build build
sudo cmake --install build
```
Usage
-----
See [manual page](doc/tortoize.pdf) for more info.
|