AutoDock CrankPep or ADCP is an AutoDock docking engine specialized for docking peptides. It combines technology form the protein folding filed with an efficient representation of a rigid receptor as affinity grids to fold the peptide in the context of the energy landscape created by the receptor.
Allocate an interactive session and run the program.
Sample session (user input in bold):
[user@biowulf]$ sinteractive
salloc.exe: Pending job allocation 46116226
salloc.exe: job 46116226 queued and waiting for resources
salloc.exe: job 46116226 has been allocated resources
salloc.exe: Granted job allocation 46116226
salloc.exe: Waiting for resource configuration
salloc.exe: Nodes cn3144 are ready for job
[user@cn3144 ~]$ module load AutodockCrankprep
[+] Loading AutodockCrankprep 1.1 on cn3144
[+] Loading singularity 4.3.7 on cn3144
[user@cn3144 ~]$ cp -a /usr/local/apps/AutodockCrankprep/data/3Q47 .
[user@cn3144 ~]$ cd 3Q47/
[user@cn3144 3Q47]$ cd 3Q47/
[user@cn3144 3Q47]$ agfr -r 3Q47_recH.pdbqt -l 3Q47_pepH.pdbqt -asv 1.1 -o 3Q47
processing: 3Q47_recH.pdbqt
loading ligand: 3Q47_pepH.pdbqt
set box using ligand
Box center: 16.052 9.415 5.617
Box length: 20.250 21.000 21.000
Box size : 54 56 56
padding : 4.000
spacing : 0.375
...
maps computed in 5.52 (sec)
making target file 3Q47.trg ...done.
done. 8.22 (sec)
[user@cn3144 3Q47]$ adcp -T 3Q47.trg -s "npis&dvd" -N 2 -n 2000 -L swiss -w testDir -o testNSAAandD
Inflating target file 3Q47.trg
performing MC searches with: /opt/conda/envs/adcpsuite/lib/python3.7/site-packages/ADCP/CrankiteAD_Linux-x86_64_1.1
target data from file: 3Q47.trg
job name: testNSAAandD, summary file testNSAAandD_summary.dlg, docked poses: testNSAAandD_out.pdb
Detected 192 cores, using 192 cores.
...
mode | affinity | ref. | clust. | rmsd | energy | best |
| (kcal/mol) | fnc | size | stdv | stdv | run |
-----+------------+------+--------+------+--------+------+
1 7.9 0.0 2 NA NA 020
Calculations completed 2.10 seconds, i.e. 0 hours 00 minutes 02.018059 seconds
MC search command: cd testDir/testNSAAandD; /opt/conda/envs/adcpsuite/lib/python3.7/site-packages/ADCP/CrankiteAD_Linux-x86_64_1.1 -t 2 "npis&dvd" -L swiss -T /vf/users/apptest1/3Q47/testDir/testNSAAandD/3Q47 -r 1x2000 -p Bias=NULL,external=5,constrains,1.0,1.0,Opt=1,0.25,0.75,0.0 -s 737136 -o run_1.pdb
seed: []
removing working folder testDir/testNSAAandD
Create a batch input file (e.g. ADCP.sh). For example:
#!/bin/bash set -e module load AutodockCrankprep/1.1 cp -a /usr/local/apps/AutodockCrankprep/data/3Q47 . cd 3Q47/ agfr -r 3Q47_recH.pdbqt -l 3Q47_pepH.pdbqt -asv 1.1 -o 3Q47
Submit this job using the Slurm sbatch command.
sbatch [--cpus-per-task=#] [--mem=#] ADCP.sh
For running version 1.0
[user@biowulf]$ sinteractive
salloc.exe: Pending job allocation 46116226
salloc.exe: job 46116226 queued and waiting for resources
salloc.exe: job 46116226 has been allocated resources
salloc.exe: Granted job allocation 46116226
salloc.exe: Waiting for resource configuration
salloc.exe: Nodes cn3144 are ready for job
[user@cn3144 ~]$ module load AutodockCrankprep/1.0
[+] Loading AutodockCrankprep 1.0 on cn3144
[user@cn3144 ~]$ prepare_receptor
prepare_receptor4: receptor filename must be specified.
Usage: prepare_receptor4.py -r filename
Description of command...
-r receptor_filename
supported file types include pdb,mol2,pdbq,pdbqs,pdbqt, possibly pqr,cif
Optional parameters:
[-v] verbose output (default is minimal output)
[-o pdbqt_filename] (default is 'molecule_name.pdbqt')
[-A] type(s) of repairs to make:
'bonds_hydrogens': build bonds and add hydrogens
'bonds': build a single bond from each atom with no bonds to its closest neighbor
'hydrogens': add hydrogens
'checkhydrogens': add hydrogens only if there are none already
'None': do not make any repairs
(default is 'None')
[-C] preserve all input charges ie do not add new charges
(default is addition of gasteiger charges)
[-p] preserve input charges on specific atom types, eg -p Zn -p Fe
[-U] cleanup type:
'nphs': merge charges and remove non-polar hydrogens
'lps': merge charges and remove lone pairs
'waters': remove water residues
'nonstdres': remove chains composed entirely of residues of
types other than the standard 20 amino acids
'deleteAltB': remove XX@B atoms and rename XX@A atoms->XX
(default is 'nphs_lps_waters_nonstdres')
[-e] delete every nonstd residue from any chain
'True': any residue whose name is not in this list:
['CYS','ILE','SER','VAL','GLN','LYS','ASN',
'PRO','THR','PHE','ALA','HIS','GLY','ASP',
'LEU', 'ARG', 'TRP', 'GLU', 'TYR','MET',
'HID', 'HSP', 'HIE', 'HIP', 'CYX', 'CSS']
will be deleted from any chain.
NB: there are no nucleic acid residue names at all
in the list and no metals.
(default is False which means not to do this)
[-M] interactive
(default is 'automatic': outputfile is written with no further user input)
[-d dictionary_filename] file to contain receptor summary information
[-w] assign each receptor atom a unique name: newname is original name plus its index(1-based)
Create a batch input file (e.g. ADCP.sh). For example:
#!/bin/bash set -e module load AutodockCrankprep/1.0 unzip ADCP_tutorial_data.zip cd ADCP_tutorial_data/3Q47 reduce 3Q47_rec.pdb > 3Q47_recH.pdb
Submit this job using the Slurm sbatch command.
sbatch [--cpus-per-task=#] [--mem=#] ADCP.sh