Open source, scientific software for the analysis of glycosaminoglycans (GAGs) and their complexes. |
---|
This tutorial will cover preparing input files for GlycoTorch, as well as running and analysing docking results. Users will need to download UCSF Chimera (or equivalent software) to add hydrogen atoms to a protein crystal structure. (download here) After such software is installed, the general outline of the tutorial is as follows:
|
For this tutorial, we will be using the crystal structure of heparin with a fibroblast growth factor (PDB code: 2AXM), available for download from the RCSB PDB (here). Once downloaded, open the structure using Chimera. Add hydrogen atoms by clicking on "Tools → Structure Editing → AddH" To save the file, click on "File → Save PDB..." and save the file as 2axm_Hs.pdb. We also want to save a file containing only the ligand. To do this, click "Select → Structure → ligand" and again click on "File → Save PDB...". This time, check the box that says "Save selected atoms only" and save the file as 2axm_ligand.pdb. |
On the GlycoTorch website, navigate to "Tools → GAG ligand input file preparation". Click "Choose File", and upload the PDB file of the ligand (2axm_ligand.pdb), then hit "Submit". Click "Generate GlycoTorch Vina Input" to download the file. In this step, appropriate atom types are added to the ligand to be compatible with the extra parameters in GlycoTorch Vina. (Optional) Angles of the glycosidic torsions (φ and ψ) and Cremer-Pople parameters describing ring conformations are printed here. These can be compared to the expected literature values. |
On the GlycoTorch website, navigate to "Tools → Protein input file preparation". Click "Choose File", and upload the PDB file of the original protein with added hydrogen atoms (2axm_Hs.pdb), then hit "Submit". Using the sliders on the top, left-hand side of the page, adjust the size and position of the purple box to set the search space to explore when docking. This should include all amino acid side chains in the binding site. Click "Save Config File" and download the file that sets the parameters for docking. Default parameters are given here and can be changed by the user as necessary. Click "Generate Protein PDBQT File" and download the structure of the receptor with appropriate atom types for GlycoTorch Vina. |
Download the executable for GlycoTorch Vina (Windows, Linux) and save it in a folder with the other files generated in previous steps. In this example, the parameters for the CHI coefficient and cutoff should be set to 2 and 1 respectively. These values are good for large GAG ligands (tetrasaccharides or longer) because it restricts them from exploring some higher energy conformations that would only be accessible for smaller sugars. For smaller sugars, CHI coefficient and cutoff values are recommended to be set to 1 and 0, respectively. Open the command prompt app from the start menu. Use the cd command to change directories to folder containing your files. (e.g.) cd C:\Users\USERNAME\Desktop\Tutorial To run docking: GlycoTorchVina.exe --receptor 2axm_Hs.pdbqt --ligand 2axm_ligand.pdbqt --config config.conf --chi_coeff 2 --chi_cutoff 1 Open the terminal app. Use the cd command to change directories to folder containing your files. (e.g.) cd /home/USERNAME/Desktop/Tutorial To run docking: GlycoTorchVina --receptor 2axm_Hs.pdbqt --ligand 2axm_ligand.pdbqt --config config.conf --chi_coeff 2 --chi_cutoff 1 |