Skip to content

Commit

Permalink
Changelog and version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Salentin committed Oct 22, 2015
1 parent 5f30898 commit aee9a6b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
---------

### 1.2.1
* __Mapping of canonical atom order to PDB atom order for each ligand__
* __Introduction of debug mode (--debug)__
* More robust visualization
* Handling of negative residue numbers for more cases
* Composite members in alphabetical order

* Fixes errors in aromatic ring detection
* Code improvements

### 1.2.0
* __Support for DNA and RNA as ligands__
* __Detection of metal complexes with proteins/ligands, including prediction of geometry__
Expand Down
3 changes: 1 addition & 2 deletions plip/plipcmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import multiprocessing
# External libraries
import lxml.etree as et

__version__ = '1.2.0'
__version__ = '1.2.1'
descript = "Protein-Ligand Interaction Profiler (PLIP) v%s " \
"is a command-line based tool to analyze interactions in a protein-ligand complex. " \
"If you are using PLIP in your work, please cite: " \
Expand Down Expand Up @@ -142,7 +142,6 @@ def process_pdb(pdbfile, outpath):
######################################

if config.PYMOL or config.PICS:
# #@todo Disable on Windows? os.name == 'nt'
complexes = [PyMOLComplex(mol, site) for site in sorted(mol.interaction_sets)
if not len(mol.interaction_sets[site].interacting_res) == 0]
if config.MAXTHREADS > 1:
Expand Down
4 changes: 2 additions & 2 deletions 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.2.0',
version='1.2.1',
description='PLIP - Fully automated protein-ligand interaction profiler',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -41,4 +41,4 @@
'lxml',
'pymol',
],
zip_safe=False)
zip_safe=False)

0 comments on commit aee9a6b

Please sign in to comment.