Skip to content

Commit

Permalink
PLIP v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Salentin committed Nov 3, 2016
1 parent 1e0883a commit 65f1ff8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Changelog
---------

# Next Version
# 1.3.3
* __Adds XML Parser module for PLIP XML files__
* Detection of intramolecular interactions with --intra (experimental feature)
* Detection of intramolecular interactions with --intra
* improved error correction in PDB files

### 1.3.2
Expand Down
11 changes: 11 additions & 0 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,17 @@ To switch into protein-peptide interaction mode, start PLIP with the option `--p
plip -i 5hi4 --peptides I -vx
```

### Detection of intra-chain interactions (__beta__)
Intra-protein interactions are important for the stabilization of a structure and can give valuable insights for protein engineering and drug discovery.
PLIP now supports detection of interactions within one chain.
To switch into intra-chain interaction mode, start PLIP with the option `--intra`, followed by the protein chain of interest, e.g.:

```bash
plip -i 5b2m --intra A -yv
```
Please note that detection within a chain takes much longer than detection of protein-ligand interactions,
especially for large structures.

## Changing detection thresholds
The PLIP algorithm uses a rule-based detection to report non-covalent interaction between proteins and their partners.
The current settings are based on literature values and have been refined based on extensive testing with independent cases from mainly crystallography journals, covering a broad range of structure resolutions.
Expand Down
2 changes: 1 addition & 1 deletion plip/modules/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# External libraries
import lxml.etree as et

__version__ = '1.3.2'
__version__ = '1.3.3'

class StructureReport:
"""Creates reports (xml or txt) for one structure/"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from setuptools import setup

setup(name='plip',
version='1.3.2',
version='1.3.3',
description='PLIP - Fully automated protein-ligand interaction profiler',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 65f1ff8

Please sign in to comment.