Docking
How to install Raccoon plugin on Ubuntu for virtual screening using Autodock?

As mentioned in our previous articles, Autodock Vina [1] is a very useful bioinformatics tool for molecular docking and provides various options for site-specific docking and blind docking. But it seemed to be difficult to perform virtual screening using Autodock. Recently, Autodock has developed a plugin known as ‘Raccoon’ [2], which serves for this purpose.
Raccoon plugin provides a graphical user interface (GUI) to perform virtual screening using Autodock.
The users don’t have to prepare pdbqt files on their own, they can easily load the ligand and protein files in the Autodock using the Raccoon GUI and perform docking. It involves other features such as ligand filtration, generate configuration files for Autodock, automated generation of virtual screening script, multiple receptor conformations, and automated processing of ligand libraries.
The installation of this plugin is very easy if you have already installed Autodock on your system, if not, then please follow this tutorial first.
How to install Raccoon plugin on Ubuntu?
-
- Download the tar file of Raccoon (http://autodock.scripps.edu/resources/raccoon).
- save it in a directory let’s say, Downloads.
- Change to the Downloads directory and untar the file:
$ cd Downloads
$ tar xvzf raccoon-1.0b.tar.gz
You will notice a new ‘raccoon.py’ file has been added to the same directory.
4. Open a terminal (Ctrl+Alt+T) and change to the directory where you extracted the tar file and type the following commands:
$ cd Downloads
$ pythonsh raccoon.py
A GUI will be displayed as shown in Fig. 1.
Fig.1 the GUI of Raccoon [2].
Now you have successfully installed raccoon plugin on your system.
In most of the cases, the pythonsh command is not recognized, then use the pythonsh from the installed MGL tools directory (let’s say, MGL Tools is a subdirectory of Downloads) and type the following commands:
$ /home/user/Downloads/mgltools_x86_64Linux2_1.5.6/bin/pythonsh raccoon.py
If you don’t want to type the full path every time you execute the raccoon script, then add an alias in your bashrc file using the following command:
$gedit ~/.bashrc
It will open the bashrc file, go at the end of this file and type the following:
$ alias raccoon='/home/user/Downloads/mgltools_x86_64Linux2_1.5.6/bin/pythonsh /home/user/Downloads/raccoon.py'
Save the file, go back to the terminal and type:
$ source ~/.bashrc
For c-shell, use the following command:
$ alias raccoon '/home/user/Downloads/mgltools_x86_64Linux2_1.5.6/bin/pythonsh /home/user/Downloads/raccoon.py'
If you have any query, then email at [email protected]
References
- Trott, O., & Olson, A. J. (2010). AutoDock Vina: improving the speed and accuracy of docking with a new scoring function, efficient optimization, and multithreading. Journal of computational chemistry, 31(2), 455-461.
- Forli, S., Huey, R., Pique, M. E., Sanner, M. F., Goodsell, D. S., & Olson, A. J. (2016). Computational protein-ligand docking and virtual drug screening with the AutoDock suite. Nature Protocols, 11(5), 905-919.
Bioinformatics Programming
How to sort binding affinities based on a cutoff using vs_analysis.py script?

Previously, we have provided a Python script (vs_analysis.py) to analyze the virtual screening (VS) results of Autodock Vina. Now, we have updated this script to sort binding affinities based on user inputted cutoff value. (more…)
Docking
Virtual Screening using Autodock Vina: Frequently Asked Questions & Answers for Starters

Virtual Screening (VS) is one of the important techniques in bioinformatics. It can be easily performed using Autodock Vina. We have provided detailed articles on this topic. In this article, we are trying to answer some FAQs for beginners. (more…)
Docking
[Tutorial] How to perform docking of zinc metalloproteins using Autodock Vina?
![[Tutorial] How to perform docking of zinc metalloproteins using Autodock Vina?](https://bioinformaticsreview.com/wp-content/uploads/2021/10/zn.jpg)
Proteins containing zinc atoms are docked in a different way than that of the normal simple proteins. Zinc atoms must be considered by a force field during the docking process. In this article, we are going to dock zinc metalloprotein with a ligand using Autodock Vina [1]. (more…)
You must be logged in to post a comment Login