-
Notifications
You must be signed in to change notification settings - Fork 1
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
Updated linux vina tutorial #3
base: main
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ micromamba install python=3.11 -y | |
micromamba install pymol-open-source -y | ||
micromamba install rdkit numpy scipy -y | ||
micromamba install chemicalite matplotlib=3.7 pandas -y | ||
micromamba install importlib_resources gemmi -y | ||
``` | ||
|
||
Several packages are being installed in a single line. | ||
|
@@ -53,14 +54,14 @@ Running the following commands will install meeko and ringtail in | |
the currently active micromamba environment. | ||
|
||
``` | ||
pip install meeko==0.6.0a3 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. seems like ringtail install a previous version of meeko, so we should probably install the right version after (or update it from ringtail release). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ringtail does not install meeko (?). It seems like the current ringtail works with meeko develop. Maybe you already talked to someone in the lab, but I can help with specific things that didn't work for you There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. my bad, seems like it does install meeko 0.5.1 but when installing it with micromamba, not with pip. We can remove this change then |
||
pip install ringtail | ||
pip install meeko==0.6.0a3 | ||
``` | ||
|
||
Running the following commands should display help messages: | ||
``` | ||
mk_prepare_ligand.py | ||
rt_process_vs.py | ||
rt_process_vs -h | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without the -h it will return an error (help message still visible but we may want to just remove the error message) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point, just opened forlilab/Ringtail#57 |
||
``` | ||
|
||
A new release of Meeko will be available soon. | ||
|
@@ -126,12 +127,12 @@ Copy the files in [toy-example-data](../toy-example-data) to the working dir and | |
``` | ||
scrub.py "Oc1ccccc1" -o phenol.sdf | ||
mk_prepare_ligand.py -i phenol.sdf -o phenol.pdbqt | ||
mk_prepare_receptor.py --pdb pocket.pdb --ligand pocket.pdb --padding 5 -o receptor | ||
mk_prepare_receptor.py --read_pdb pocket.pdb --box_enveloping pocket.pdb --padding 5 -o receptor -p -j -v | ||
mkdir results | ||
./vina_1.2.5_linux_x86_64 --receptor receptor.pdbqt --config receptor.box.txt --ligand phenol.pdbqt --out results/phenol.pdbqt | ||
rt_process_vs.py write -o results.db -fp results -m vina -ai -rf receptor.pdbqt | ||
rt_process_vs write -o results.db -fp results -m vina -ai -rf receptor.pdbqt -sr | ||
mkdir passing_sdf | ||
rt_process_vs.py read -i results.db -e -2 -sdf passing_sdf | ||
rt_process_vs read -i results.db -e -2 -sdf passing_sdf | ||
``` | ||
|
||
A file "phenol.sdf" should have been added to "passing\_sdf". |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this couple of packages are missing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will be fixed in release meeko v0.6