Metadata-Version: 2.1
Name: maestro2charmmgui
Version: 0.1.1
Summary: 
Author: Yu-Yuan (Stuart) Yang - from connectin, AFLab
Author-email: yu-yuan.yang@qmul.ac.uk
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: ipykernel (>=6.29.4,<7.0.0)
Requires-Dist: ipywidgets (>=8.1.3,<9.0.0)
Requires-Dist: mdanalysis (>=2.4,<3.0)
Requires-Dist: pytest (>=7.4.4,<8.0.0)
Requires-Dist: pytest-cov (>=4.1.0,<5.0.0)
Description-Content-Type: text/markdown

# Maestro2CharmmGUI
``` bash
# install
pip install maestro2charmmgui
```

Check whether it works:

```bash
pytest

# 2 passed, 1 warnining
```

For usage, see the [jupyter notebook](./rename_Hs.ipynb) for renaming the hydrogens defined in Maestro into CHARMM's definition. 

```python
from maestro2charmmgui.rename import transform_with_resname

# rename the atoms by using a residue-based corresponding dictionary with a single function
input = "path/to/pdbfile.pdb"
output = "path/to/pdbfile_charmm.pdb"

transform_with_resname(input, output)

```

