Metadata-Version: 2.4
Name: gemmi_protools
Version: 0.1.17
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.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: gemmi>=0.7.0
Requires-Dist: pandas>=2.2.3
Requires-Dist: typeguard>=4.1.2
Requires-Dist: numpy
Requires-Dist: biopython>=1.84
Requires-Dist: scipy>=1.14.1
Dynamic: author
Dynamic: license-file

# An Enhanced tool to process PDB structures based on Gemmi

# Install
```commandline
conda create -n gp python=3.10 
conda install -n gp anarci hmmer -c bioconda
conda install -n gp dockq -c conda-forge
conda activate gp
pip install gemmi_protools
```

# Usage

## read structures
```commandline
from gemmi_protools import StructureParser
st=StructureParser()
st.load_from_file("your.pdb")
```
