Metadata-Version: 2.4
Name: proteinspy
Version: 1.0.0
Summary: A Poetry package to analyze protein structure from .cif files
License: MIT
Keywords: protein,bioinformatics,cif,pdb,gemmi,structure
Author: AkhilTeja2209
Author-email: your_email@example.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Dist: gemmi
Requires-Dist: rich
Project-URL: Homepage, https://akhilteja2209.github.io/Proteinspy/
Project-URL: Repository, https://github.com/AkhilTeja2209/Proteinspy
Description-Content-Type: text/markdown

# Proteinspy

This is a python package based on Poetry.

This repository can be used to find the _Resolution_, _Missing residues_, _Ligands_, and _Chains_ in any Protein sample uploaded. The sample must be in a .cif file for the pipeline to run properly. 

## 📚 Data
A sample [protein](https://github.com/AkhilTeja2209/Proteinspy/blob/main/Final_proj_1/10AJ.cif), has been given, and can also be accessed from the [PDB](https://www.rcsb.org), among many other samples. 

## 🗒️ Requirements
python [poetry](https://python-poetry.org/docs/) and its pre-requisites must be available on the system.

## 🚀 To run the pipeline,

1. For a mode based implementation
```bash
cd "<your complete folder path>"
poetry install    #installs all the dependencies of the package

poetry run proteinspy analyze 10AJ.cif    #replace the protein input name with your own file if you're using a different input or a filename
```

2. For an argument based implementation
```bash
cd "<your complete folder path>"
poetry install    #installs all the dependencies of the package

poetry run proteinspy resolution 10AJ.cif    #gives the resolution of the protein
poetry run proteinspy ligands 10AJ.cif       #gives the ligands in the protein
poetry run proteinspy missing 10AJ.cif       #gives the missing residues in the protein
poetry run proteinspy chains 10AJ.cif        #gives the chains in the protein
```

## 📈 Future Enhancements
- [ ] UI/UX 
- [ ] Containerisation, using docker

## ⚠️ NOTE
This is an open-source project, and any contribtions, even if not mentioned in the future enhancements section, are welcome. 

