File: README.md

package info (click to toggle)
tortoize 2.0.15-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,072 kB
  • sloc: cpp: 3,910; javascript: 174; sh: 11; makefile: 11
file content (38 lines) | stat: -rw-r--r-- 1,014 bytes parent folder | download | duplicates (2)
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
========

[![github CI](https://github.com/PDB-REDO/tortoize/actions/workflows/cmake-multi-platform.yml/badge.svg)](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.