Skip to main content

Cython bindings and Python interface to JESS, a 3D template matching software.

Project description

🐍🔍 PyJess Stars

Cython bindings and Python interface to Jess, a 3D template matching software.

Actions Coverage License PyPI Bioconda AUR Wheel Python Versions Python Implementations Source Issues Docs Changelog Downloads

🗺️ Overview

Jess is an algorithm for constraint-based structural template matching proposed by Jonathan Barker et al.[1]. It can be used to identify catalytic residues from a known template inside a protein structure. Jess is an evolution of TESS, a geometric hashing algorithm developed by Andrew Wallace et al.[2], removing some pre-computation and structural requirements from the original algorithm. Jess was further updated and maintained by Ioannis Riziotis during his PhD in the Thornton group.

PyJess is a Python module that provides bindings to Jess using Cython. It allows creating templates, querying them with protein structures, and retrieving the hits using a Python API without performing any external I/O.

🔧 Installing

PyJess is available for all modern Python versions (3.6+).

It can be installed directly from PyPI, which hosts some pre-built x86-64 wheels for Linux, MacOS, and Windows, as well as the code required to compile from source with Cython:

$ pip install pyjess

Check the install page of the documentation for other ways to install PyJess on your machine.

💡 Example

Load templates to be used as references from different template files:

import glob
import pyjess

templates = []
for path in sorted(glob.iglob("vendor/jess/examples/template_*.qry")):
    templates.append(Template.load(path, id=os.path.basename(path)))

Create a Jess instance and use it to query a molecule (a PDB structure) against the stored templates:

jess = Jess(templates)
mol = Molecule("vendor/jess/examples/test_pdbs/pdb1a0p.ent")
query = jess.query(mol, rmsd_threshold=2.0, distance_cutoff=3.0, max_dynamic_distance=3.0)

The hits are computed iteratively, and the different output statistics are computed on-the-fly when requested:

for hit in query:
    print(hit.molecule.id, hit.template.id, hit.rmsd, hit.log_evalue)
    for atom in hit.atoms():
        print(atom.name, atom.x, atom.y, atom.z)

🧶 Thread-safety

Once a Jess instance has been created, the templates cannot be edited anymore, making the Jess.query method re-entrant. This allows querying several molecules against the same templates in parallel using a thread pool:

molecules = []
for path in glob.glob("vendor/jess/examples/test_pdbs/*.ent"):
    molecules.append(Molecule.load(path))

with multiprocessing.ThreadPool() as pool:
    hits = pool.map(jess.query, molecules)

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker if you need to report or ask something. If you are filing in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.

🏗️ Contributing

Contributions are more than welcome! See CONTRIBUTING.md for more details.

📋 Changelog

This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.

⚖️ License

This library is provided under the MIT License. The JESS code is distributed under the MIT License as well.

This project is in no way not affiliated, sponsored, or otherwise endorsed by the JESS authors. It was developed by Martin Larralde during his PhD project at the European Molecular Biology Laboratory in the Zeller team.

📚 References

  • [1] Barker, J. A., & Thornton, J. M. (2003). An algorithm for constraint-based structural template matching: application to 3D templates with statistical analysis. Bioinformatics (Oxford, England), 19(13), 1644–1649. doi:10.1093/bioinformatics/btg226.
  • [2] Wallace, A. C., Borkakoti, N., & Thornton, J. M. (1997). TESS: a geometric hashing algorithm for deriving 3D coordinate templates for searching structural databases. Application to enzyme active sites. Protein science : a publication of the Protein Society, 6(11), 2308–2323. doi:10.1002/pro.5560061104.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyjess-0.1.1.tar.gz (210.3 kB view hashes)

Uploaded Source

Built Distributions

pyjess-0.1.1-pp310-pypy310_pp73-win_amd64.whl (253.0 kB view hashes)

Uploaded PyPy Windows x86-64

pyjess-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.7 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (260.1 kB view hashes)

Uploaded PyPy macOS 10.12+ x86-64

pyjess-0.1.1-pp39-pypy39_pp73-win_amd64.whl (252.9 kB view hashes)

Uploaded PyPy Windows x86-64

pyjess-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.5 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (260.0 kB view hashes)

Uploaded PyPy macOS 10.12+ x86-64

pyjess-0.1.1-pp38-pypy38_pp73-win_amd64.whl (252.3 kB view hashes)

Uploaded PyPy Windows x86-64

pyjess-0.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.1 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (259.7 kB view hashes)

Uploaded PyPy macOS 10.12+ x86-64

pyjess-0.1.1-pp37-pypy37_pp73-win_amd64.whl (252.3 kB view hashes)

Uploaded PyPy Windows x86-64

pyjess-0.1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-pp37-pypy37_pp73-macosx_10_12_x86_64.whl (259.6 kB view hashes)

Uploaded PyPy macOS 10.12+ x86-64

pyjess-0.1.1-cp312-cp312-win_amd64.whl (268.7 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

pyjess-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (852.2 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (292.6 kB view hashes)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pyjess-0.1.1-cp311-cp311-win_amd64.whl (269.3 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

pyjess-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (852.1 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (292.6 kB view hashes)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pyjess-0.1.1-cp310-cp310-win_amd64.whl (269.3 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

pyjess-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (815.5 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (292.0 kB view hashes)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pyjess-0.1.1-cp39-cp39-win_amd64.whl (269.3 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

pyjess-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (812.7 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp39-cp39-macosx_10_12_x86_64.whl (292.0 kB view hashes)

Uploaded CPython 3.9 macOS 10.12+ x86-64

pyjess-0.1.1-cp38-cp38-win_amd64.whl (269.5 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

pyjess-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (828.4 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp38-cp38-macosx_10_12_x86_64.whl (290.1 kB view hashes)

Uploaded CPython 3.8 macOS 10.12+ x86-64

pyjess-0.1.1-cp37-cp37m-win_amd64.whl (268.2 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

pyjess-0.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.2 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp37-cp37m-macosx_10_12_x86_64.whl (288.1 kB view hashes)

Uploaded CPython 3.7m macOS 10.12+ x86-64

pyjess-0.1.1-cp36-cp36m-win_amd64.whl (288.2 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

pyjess-0.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (746.2 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pyjess-0.1.1-cp36-cp36m-macosx_10_12_x86_64.whl (286.0 kB view hashes)

Uploaded CPython 3.6m macOS 10.12+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page