Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add script (CLI) / package to calculate atom pairwise energies in a protein complex interface #12

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,32 @@ already treated and are present in the *4_ready_to_minimize* folder. Therefore,
you can restart a previously halted run without needing to repeat the already
completed PDBs.

# Additional Features

## Calculate interface pairwise energies

Use the `evaluate_pairwise_energies.py` script to calculate atom-atom energies
of a protein complex interface. Here, the interface is defined by a configurable
distance parameter (defaults to 5 Angstroms). The script has several parameters
to configure the execution and the calculation. Example:

```bash
$ python evaluate_pairwise_energies.py -h # for listing all options
$ python evaluate_pairwise_energies.py -s FILE.pdb # to run on FILE.pdb
```

This will output a file of the following format:

```
chainA resnameA resiA atomA - chainB resnameB resiB atomA LJ Coulomb (kcal/mole)
A LEU 20 HD13 - B ASN 60 OD1 -0.00803 -4.03991
A PRO 21 N - B ALA 46 HB1 -0.01046 -1.06165
A PRO 21 N - B ARG 48 HD2 -0.00725 -1.16984
(...)
Total LJ: -22.92113 (kcal/mole)
Total Coulomb: -278.20533 (kcal/mole)
```

# Troubleshooting

## Can't find Python
Expand Down
Loading