Other
Docking@Home
English
molecular-docking
drug-discovery
distributed-computing
autodock
boinc
chemistry
biology
agent
computational-chemistry
bioinformatics
gpu-acceleration
distributed-network
decentralized
Instructions to use OpenPeerAI/DockingAtHOME with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Docking@Home
How to use OpenPeerAI/DockingAtHOME with Docking@Home:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
File size: 511 Bytes
35aaa09 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Example workflow: Basic molecular docking
# 1. Download example molecules
curl -o ligand.pdbqt https://files.rcsb.org/download/1HSG.pdb
curl -o receptor.pdbqt https://files.rcsb.org/download/1HIV.pdb
# 2. Run local docking
docking-at-home submit \
--ligand ligand.pdbqt \
--receptor receptor.pdbqt \
--runs 100 \
--output results/basic_docking
# 3. Monitor progress
docking-at-home status JOB_ligand_receptor
# 4. Retrieve results
docking-at-home results JOB_ligand_receptor --format json
|