-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docking error code #361
Comments
Hello @emilytheis1 |
When I import autodock using the command This is my molecule.pdqt file attached, changed to .txt for upload |
Hi @emilytheis1, This might not be a valid pdbqt for ligand. For ligand, Vina expects keywords that describe the molecule's flexibility such as
apt-get doesn't seem to have the most up-to-date version of vina. If you're using Google Colab you can simply download the executable and upload to a convenient location in your drive |
So I made the pdbqt files using MGLTools... is that outdated? I've also tried making the pdbqt files using Open Babel (attached) but that resulted in an error code of 1 as well. I'll give the executable a try too, where do I find it? |
Hi @emilytheis1 The project's Git repository is: https://github.com/forlilab/Meeko/ We have very recently released a new version and put up the documentation. Here you can find some basic usage on ligand preparation. Please give it a try, and in case you're interested in integration with Google Colab notebooks, I have made some sample sessions that are full docking calculations from preparation to pose export. See a collection also from Meeko documentation: |
You could find executables for the latest version of Vina from the Release page of this repository: |
Those Meeko examples are so helpful, thank you! got autodoc vina running using those. |
I'm using a known molecule, converted to pdbqt using MGTools, and a known protein, also convered to pdbqt using MGTools 1.5.7. I added hydrogens and charges using MGTools. I defined my area of interest using center and size coordinates, and checked it using the visualization part of MGTools. However, I'm still getting Error 1 when I try to run autodock vina, without any further description. What could be going wrong, or what else could I do to debug?? I'm running AutoDock Vina 1.2.3. This is the command I'm using:
vina_cmd = [
"vina",
"--receptor", receptor_path,
"--ligand", ligand_path,
"--center_x", str(center_x),
"--center_y", str(center_y),
"--center_z", str(center_z),
"--size_x", str(size_x),
"--size_y", str(size_y),
"--size_z", str(size_z),
"--exhaustiveness", "20",
"--num_modes", "9",
"--energy_range", "3",
"--out", output_path
]
The text was updated successfully, but these errors were encountered: