Detect functional block of protein. If you have two different proteins that bind to the same target protein. Struct2Block is an easy tool designed for quickly evaluating the following situations:1) An antibody binds to a receptor. To what extent does it sterically hinder the ligand. 2)2 different ligands bind to the same receptor. To what degree does they compete.
Reason this release was yanked:
version number
Project description
Struct2Block
Detect functional blocking.
If you have two different proteins that bind to the same target protein. Struct2Block is an easy tool designed for quickly evaluating the following situations:
- An antibody binds to a receptor. To what extent does it sterically hinder the ligand.
- 2 different ligands bind to the same receptor. To what degree does they compete.
1 Install
1.1 pip
pip install struct2block
1.2 conda
conda install chou_uken::struct2block
mamba install chou_uken::struct2block
2 How to use
2.1 As a Command Line Application
To get usage instructions.
struct2block --help
For example, you can use this command line:
struct2block A.pdb B.pdb
It will use A.pdb as antigen-ligand complex and B.pdb as Antibody-antigen complex. Then some details and results will be printed in the console. If you don't need any output, use option -q or --quiet.
You can also output superimposed structures with following command line.
struct2block A.pdb B.pdb prefix
Then your structures will be output as prefix_antibody.pdb and prefix_ligand.pdb.
2.2 As a Python API
def struct2block(complex: str, anti: str, prefix: str=None, quiet: bool=False) -> float:
"""Calculate the steric clash volume (block rate) of antibody.
Block rate = Volume of ligand occupied by antibody / Total volume of ligand
Args:
complex (str): PDB file containing Antigen-Ligand model.
anti (str): PDB file containing Antigen-Antibody model.
prefix (str): The file prefix you want to store the superimposed complex structures.
quiet (bool): If true, suppress the output.
Returns:
blockRate (float): block rate.
"""
For example:
from struct2block.struct2block import struct2block
br: float = struct2block(complex="antigen-ligand.pdb", anti="antigen-antibody.pdb", quiet=False)
3 How does it work
First, Struct2Block find the most similar shared chain in two PDB files as antigen. Then it calculates the space (V_ligand) occupied by the ligand in the antigen-ligand complex. Next, it calculates the volume of that same space that is now occupied by the antibody in the antigen-antibody complex (V_antibody ∩ ligand). Then the steric clash volume of ligand (called 'block rate')
block rate = V(antibody ∩ ligand) / V(ligand)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file struct2block-1.0.0.tar.gz.
File metadata
- Download URL: struct2block-1.0.0.tar.gz
- Upload date:
- Size: 269.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b660a1cc1676e1d29e921fcd336679c0b5ad96eaa133fb61b0206eada8671c2e
|
|
| MD5 |
eddfa2c15df1e78f314a66a1be604c6a
|
|
| BLAKE2b-256 |
955616f652fe369954d40d8fc3ae43f333e7d0e43e79f6c16c3c9e54f34b00aa
|
File details
Details for the file struct2block-1.0.0-py3-none-any.whl.
File metadata
- Download URL: struct2block-1.0.0-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65d42ddbecb153320b4198397b62577587345830e573861d566ca84aad18015d
|
|
| MD5 |
445dbd7600ff26c0ed9143d678a31ea0
|
|
| BLAKE2b-256 |
57e6016710e3dee4b6fb2aa98592b55056cb702636f1c01560649197fbe65ed1
|