AutoDock

Revision as of 15:34, 28 June 2016 by Botto (talk | contribs)

Description

From the AutoDock website: AutoDock is a suite of automated docking tools. It is designed to predict how small molecules, such as substrates or drug candidates, bind to a receptor of known 3D structure. AutoDock 4 actually consists of two main programs: autodock performs the docking of the ligand to a set of grids describing the target protein; autogrid pre-calculates these grids. In addition to using them for docking, the atomic affinity grids can be visualised. This can help, for example, to guide organic synthetic chemists design better binders.

Version

  • 4.2.3

Authorized Users

  • CIRCE account holders

Platforms

  • CIRCE cluster

Running Jobs on CIRCE

Modules

Before running a job, you must first set up your environment properly. Here are the required module files:

  • apps/autodock/4.2.3

To run AutoDock on the cluster, ensure that you use module add prior to using any executables. See Modules for more information.

Distributed Parallel

If, for example, you have an AutoDock input file named autodock.pdb, you would set up a submit script like this:

  • The script below (for testing, name it “autodock-test.sh”) can be copied into your job directory (the folder with your input files) and modified so that you can submit batch processes to the queue. For help on submitting jobs to the queue, see our SLURM User’s Guide. Scripts are provided as examples only. Your SLURM executables, tools, and options will vary.
#!/bin/bash
#
#SBATCH --comment=autodock-test
#SBATCH --ntasks=4
#SBATCH --job-name=autodock-test
#SBATCH --output=output.%j.autodock-test
#SBATCH --time=01:00:00

#### Slurm 4 processor AutoDock test to run for 1 hour.

module purge
module load apps/autogrid/4.2.3
module load apps/autodock/4.2.3

mpirun autogrid4 autodock.pdb
mpirun autodock4 autodock.pdb

 
Next, you can change to your job’s directory, and run the sbatch command to submit the job:

[user@login0 ~]$ cd my/jobdir
[user@login0 jobdir]$ sbatch ./autodock-test.sh
  • You can view the status of your job with the “squeue -u <username>” command

Additional Documentation

  • AutoDock User's Guide
    • /apps/legacy/autodock/4.2.3/AutoDock4.2_UserGuide.pdf

More Job Information

See the following for more detailed job submission information:

Reporting Bugs

Report bugs with AutoDock to the IT Help Desk: rc-help@usf.edu