BioInterface is a Biopython based package that extracts Protein-DNA interfaces in a PDB structures.
Project description
BioInterface is a Biopython based package that extracts Protein-DNA interfaces in a PDB structures.
Free software: MIT license
Documentation: https://biointerface.readthedocs.io.
Get Started
This is a little tutorial on how to use the BioInterface package.
The official release is found in the Python Package Index (PyPI)
$ pip install biointerface
You can extract a single Protein-DNA interface from a single protein chain.
from Bio.PDB.MMCIFParser import MMCIFParser
from biointerface import Interface, build_interfaces
# parse and build structure with Biopython
parser = MMCIFParser()
structure = parser.get_structure(
structure_id="1A02", filename="1a02-assembly1.cif"
)
# extract interface from a specific protein chain
face = Interface(
structure=structure,
protein_chain_id="F",
search_radius=5.0
)
face
<Interface chains=F:BA contacts=258 search_radius=5.0>
Check the official documentation for more information.
Feaures
Extract one specific Protein-DNA interface in a PDB structure, given a protein chain id;
Extract all Protein-DNA interfaces in a PDB structure;
Get all interacting residues in a interface;
Get all interacting atoms in a interface;
Interface data as pandas DataFrame;
Get all continous protein-bound double-strand nucleic acids;
TODO
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
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 biointerface-0.3.2.tar.gz.
File metadata
- Download URL: biointerface-0.3.2.tar.gz
- Upload date:
- Size: 27.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e5d955b7493dc6dab6060fa9d7bec56fef3017954a591809c3fc9c81a2dce9
|
|
| MD5 |
0dc87c6bd2dec5594179cf6a2b423487
|
|
| BLAKE2b-256 |
abe8e81719a9beaaaa177c1b9990557759658a30ea4b7b96eda59afd99a5fb5b
|
File details
Details for the file biointerface-0.3.2-py3-none-any.whl.
File metadata
- Download URL: biointerface-0.3.2-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddabec12f744e8cb2abdfa5669a74dd8da390f33e32baf484b1f04f6174fe780
|
|
| MD5 |
1b5906e1b758914b8b24f71eaa460a35
|
|
| BLAKE2b-256 |
f93bb179ef0a9b3d15284bfd8b32f231c7f3e7692de3034ae33f05ce8614116d
|