Find fragments predicted to bind to a protein called 1XDN.pdb. The region of the active site to be analyzed is located at (37.6, 23.2, 13.4). Only the region within 6 angstroms of the specified coordinate should be considered. The output will be written to a directory called ./my_output/:
python crystal_dock.py -receptor_pdb_file 1XDN.pdb -pocket_center_x 37.6 -pocket_center_y 23.2 -pocket_center_z 13.4 -pocket_radius 6 -output_directory ./my_output/
Same as above, but only microenvironments containing three residues should be considered:
python crystal_dock.py -receptor_pdb_file 1XDN.pdb -pocket_center_x 37.6 -pocket_center_y 23.2 -pocket_center_z 13.4 -pocket_radius 6 -output_directory ./my_output/ -use_microenvironments_of_3_residues true -use_microenvironments_of_4_residues false -use_microenvironments_of_5_residues false
Same as above, but rather than allowing CrystalDock to auto-detect active-site-lining residues, the user specifies those residues explicitly:
python crystal_dock.py -receptor_pdb_file 1XDN.pdb -pocket_center_x 37.6 -pocket_center_y 23.2 -pocket_center_z 13.4 -pocket_radius 6 -output_directory ./my_output/ -use_microenvironments_of_3_residues true -use_microenvironments_of_4_residues false -use_microenvironments_of_5_residues false -user_specified_residue 371_ARG_A -user_specified_residue 118_ARG_A -user_specified_residue 292_ARG_A -user_specified_residue 406_TYR_A -user_specified_residue 347_TYR_A
Same as above, but now with altered filter parameters:
python crystal_dock.py -receptor_pdb_file 1XDN.pdb -pocket_center_x 37.6 -pocket_center_y 23.2 -pocket_center_z 13.4 -pocket_radius 6 -output_directory ./my_output/ -use_microenvironments_of_3_residues true -use_microenvironments_of_4_residues false -use_microenvironments_of_5_residues false -user_specified_residue 371_ARG_A -user_specified_residue 118_ARG_A -user_specified_residue 292_ARG_A -user_specified_residue 406_TYR_A -user_specified_residue 347_TYR_A -filter_steps_one_and_two_tolerance 4.0 -filter_step_three_CA_rmsd_cutoff 4.0 -filter_step_four_side_chain_angle_cutoff 180.0 -filter_step_five_rmsd_cutoff 4.0 -filter_step_six_steric_clash_cutoff 4.0
Same as above, but explicitly instruct the program to run on 2 processors:
python crystal_dock.py -receptor_pdb_file 1XDN.pdb -pocket_center_x 37.6 -pocket_center_y 23.2 -pocket_center_z 13.4 -pocket_radius 6 -output_directory ./my_output/ -use_microenvironments_of_3_residues true -use_microenvironments_of_4_residues false -use_microenvironments_of_5_residues false -user_specified_residue 371_ARG_A -user_specified_residue 118_ARG_A -user_specified_residue 292_ARG_A -user_specified_residue 406_TYR_A -user_specified_residue 347_TYR_A -filter_steps_one_and_two_tolerance 4.0 -filter_step_three_CA_rmsd_cutoff 4.0 -filter_step_four_side_chain_angle_cutoff 180.0 -filter_step_five_rmsd_cutoff 4.0 -filter_step_six_steric_clash_cutoff 4.0 -num_processors 2