Python client for SynGlue
Project description
git clone https://github.com/the-ahuja-lab/SynGlue.git
SynGlue API Client
SynGlue is a minimal Python client for the SynGlue web API at https://synglue.ahujalab.iiitd.edu.in/. It allows you to submit design and screen jobs, check job status, and download results programmatically.
Installation
Install the package and its only dependency:
pip install synglue requests
Usage Example
from synglue import SynGlue
# Initialize the client
client = SynGlue()
# Submit a design job
design_result = client.submit_design(target="EGFR", threshold=80)
print("Design job response:", design_result)
# Check design job status
design_status = client.design_status(job_id=design_result["job_id"])
print("Design job status:", design_status)
# Download design results (when job is complete)
# client.download_design(job_id=design_result["job_id"], out_path="design_results.zip")
# --- SCREENING EXAMPLE ---
# Submit a screen job with a list of molecules
molecules = [
{"name": "Aspirin", "smiles": "CC(=O)Oc1ccccc1C(=O)O"},
{"name": "Imatinib", "smiles": "CC1=CC=CC=C1"}
]
screen_result = client.submit_screen(molecules=molecules)
print("Screen job response:", screen_result)
# Check screen job status
screen_status = client.screen_status(job_id=screen_result["job_id"])
print("Screen job status:", screen_status)
# Download screen results (when job is complete)
# client.download_screen(job_id=screen_result["job_id"], out_path="screen_results.csv")
Methods
submit_design(target, threshold=75.0)design_status(job_id)download_design(job_id, out_path)submit_screen(molecules)submit_screen_csv(csv_path)screen_status(job_id)download_screen(job_id, out_path)health_check()
See the source code for full method documentation.
Prerequisites
- Python 3.7 or higher
- requests (for API calls)
License
SynGlue is licensed under the MIT License. See LICENSE for more details.
Dependencies
Prerequisites
- Python 3.7 or higher
- requests (for API calls)
Install the required package:
pip install requests
No other dependencies are required for the SynGlue API client.
License
SynGlue is licensed under the MIT License. See LICENSE for more details.
Project details
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 synglue-0.1.4.tar.gz.
File metadata
- Download URL: synglue-0.1.4.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
536bf68572bbbbe06ba1a2244ad114490fb6ccb23a1f0077264124e1da2bd0f1
|
|
| MD5 |
6748559b3e47cf725389f1ed93061288
|
|
| BLAKE2b-256 |
be3490750c0e3125f973db5c26d7dee217067dfb7c8ec7438c5c7219b7cd076f
|
File details
Details for the file synglue-0.1.4-py3-none-any.whl.
File metadata
- Download URL: synglue-0.1.4-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0795d63d3166a59777a9780f21381f95a1a07b93c74ce4ec986c841246bd08e1
|
|
| MD5 |
a886296114b2e670b831d5abfe60d197
|
|
| BLAKE2b-256 |
2f514b47e9de46bdf6fd95e1c997c7d616cd3ba64256cf3c25b1079ab8e71c80
|