2023 Denovo tutorial 1 with PDBID 4S0V

From Rizzo_Lab
Revision as of 17:23, 2 March 2023 by Stonybrook (talk | contribs) (DeNovo Refinement)
Jump to: navigation, search

Introduction

This next section will walk you through the three options for DeNovo Design:

  1. Generic DeNovo Design
  2. Focused Fragment Design
  3. DeNovo Refinement

and will be a continuation of the Virtual Screening tutorial. We will continue this work with #4s0v from the Protein Data Base.

Setting Up Your Environment

For this section we will need to create some more directories following this structure:


DeNovo Refinement

The DeNovo Refinement calculation/algorithm within DOCK is an interesting way to determine the effects on a ligand/protein interaction by changing part of the small molecule. For this tutorial we are going to change just a terminal ring on our ligand and see what different residues DOCK suggests we look into further.

The overall idea behind this refinement is to delete a portion of your ligand, replace the "stub" atom (or "anchor" atom) which is now not bonded to anything with a dummy atom, and ask DOCK to find an alternative.

1. Open the ligand minimized mol2 file we generated in the previous tutorial into Chimera. 2. Open the protein into the same session 3. Examine the binding site and choose a residue on the ligand that's pointing towards the inside of the binding site. For our protein this detailed section looks like:

LigandInSite.png

We see an imidazole ring pointing towards the binding site so will choose to work with that. Select the protein and hide it from view.

4. Place your mouse over the atom connecting the ring to the rest of the ligand and note the atom and number. In this case it's N4.

Atomnumber.png

5. Delete all the atoms from N4 to the end. Your ligand should now look something like:

DeletedRing.png

6. Save a .mol2 file of your ligand in this configuration. Make sure to give it a new filename such as 4s0v_denovoRefinement.mol2 7. Open the .mol2 file. If you're on a UNIX system, you can use vi; if you're on a PC, you can use textedit. Locate the atom that will now be changed to a dummy atom:

Originalmol2.png

8. Change the atom type to 'Du1' and the bond type to 'Du':

Modifiedmol2.png

and save the file.

9. Open a new session in Chimera and load the modified mol2 file. The "dummy" atom should now be purple:

Dummyatom.png

10. scp 4s0v_denovoRefinement.mol2 over to Seawulf and into the 012.denovoRefinement directory. From this point on we will be working on the command line.

Now that we have our .mol2 file on Seawulf we can run the DeNovo Refinement tool in DOCK6.10. We need to create an input file:

 vi denovoRefinement.in

and type the following commands into it:

 conformer_search_type                                        denovo
 dn_fraglib_scaffold_file                                     /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/fraglib_scaffold.mol2
 dn_fraglib_linker_file                                       /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/fraglib_linker.mol2
 dn_fraglib_sidechain_file                                    /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/fraglib_sidechain.mol2
 dn_user_specified_anchor                                     yes
 dn_fraglib_anchor_file                                       4s0v_ligand_denovo.mol2
 dn_torenv_table                                              /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/fraglib_torenv.dat
 dn_name_identifier                                           4s0v_denovo
 dn_sampling_method                                           graph
 dn_graph_max_picks                                           30
 dn_graph_breadth                                             3
 dn_graph_depth                                               2
 dn_graph_temperature                                         100.0
 dn_pruning_conformer_score_cutoff                            100.0
 dn_pruning_conformer_score_scaling_factor                    2.0
 dn_pruning_clustering_cutoff                                 100.0
 dn_mol_wt_cutoff_type                                        soft
 dn_upper_constraint_mol_wt                                   1000.0
 dn_lower_constraint_mol_wt                                   0.0
 dn_mol_wt_std_dev                                            35.0
 dn_constraint_rot_bon                                        15
 dn_constraint_formal_charge                                  5
 dn_heur_unmatched_num                                        1
 dn_heur_matched_rmsd                                         2.0
 dn_unique_anchors                                            1
 dn_max_grow_layers                                           1
 dn_max_root_size                                             25 
 dn_max_layer_size                                            25
 dn_max_current_aps                                           5
 dn_max_scaffolds_per_layer                                   1
 dn_write_checkpoints                                         yes
 dn_write_prune_dump                                          no
 dn_write_orients                                             no
 dn_write_growth_trees                                        no
 dn_output_prefix                                             4s0v_denovo_output
 use_internal_energy                                          yes
 internal_energy_rep_exp                                      12
 internal_energy_cutoff                                       100.0
 use_database_filter                                          no
 orient_ligand                                                no
 bump_filter                                                  no
 score_molecules                                              yes
 contact_score_primary                                        no
 grid_score_primary                                           yes
 grid_score_rep_rad_scale                                     1
 grid_score_vdw_scale                                         1
 grid_score_es_scale                                          1
 grid_score_grid_prefix                                       ../003.gridbox/grid
 minimize_ligand                                              yes
 minimize_anchor                                              no
 minimize_flexible_growth                                     yes
 use_advanced_simplex_parameters                              no
 simplex_max_cycles                                           1
 simplex_score_converge                                       0.1
 simplex_cycle_converge                                       1
 simplex_trans_step                                           1
 simplex_rot_step                                             0.1
 simplex_tors_step                                            10
 simplex_grow_max_iterations                                  250
 simplex_grow_tors_premin_iterations                          0
 simplex_random_seed                                          0
 simplex_restraint_min                                        yes
 simplex_coefficient_restraint                                10
 atom_model                                                   all
 vdw_defn_file                                                /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/vdw_de_novo.defn
 flex_defn_file                                               /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/flex.defn
 flex_drive_file                                              /gpfs/projects/AMS536/zzz.programs/dock6.10/parameters/flex_drive.tbl

To run your file simply type:

 dock6 -i denovoRefinement.in -o denovoRefinement.out

Generic DeNovo Design

Focused Fragment Design