Metadata-Version: 2.4
Name: gemmi_protools
Version: 1.0.2
Summary: An Enhanced tool to process PDB structures based on Gemmi
Author: Luo Jiejian
Author-email: Luo Jiejian <luojiejian12@mails.ucas.ac.cn>
License-Expression: MIT
Requires-Python: <3.13,>=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gemmi==0.7.3
Requires-Dist: biopython==1.85
Requires-Dist: dockq==2.1.3
Requires-Dist: pandas
Requires-Dist: typeguard
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: trimesh
Requires-Dist: joblib
Requires-Dist: rtree
Requires-Dist: freesasa==2.2.1
Dynamic: author
Dynamic: license-file

# An Enhanced tool to process PDB structures based on Gemmi

# Install
```commandline

conda install python=3.12.9 anarci hmmer dockq trimesh rtree -c bioconda -c conda-forge
pip install gemmi_protools
```

# Usage

## read structures
```commandline
from gemmi_protools import StructureParser

# load structure
st=StructureParser()
st.load_from_file("7mmo.cif")

# get chain IDs
print(st.chain_ids)
```
