Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fast grant sentinel cases for retrospective benchmarking #7

Merged
merged 2 commits into from
Aug 10, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add fastgrant-table1
  • Loading branch information
jchodera committed Aug 6, 2020
commit 966e061a9bcf75c3369a7a9152d8d82bc0ae28e7
7 changes: 4 additions & 3 deletions synthetic-enumeration/02-generate-poses.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def generate_poses(receptor, refmol, target_molecules_filename, output_filename,
refmol : openeye.oechem.OEGraphMol
Reference molecule which shares some part in common with the proposed molecule
target_molecules_filename : str
Molecules to build
Input file of molecules to build
output_filename : str
Output filename for generated conformers
filter_series : str, optional, default=None
Expand Down Expand Up @@ -391,7 +391,8 @@ def generate_poses(receptor, refmol, target_molecules_filename, output_filename,

# Load all fragments
for prefix in [
'aminopyridine_compounds_for_FEP_benchmarking',
'fastgrant-table1',
#'aminopyridine_compounds_for_FEP_benchmarking',
#'nucleophilic_displacement_enumeration_for_FEP-permuted',
#'activity-data-2020-07-29',
#'primary_amine_enumeration_for_chodera_lab_FEP-permuted',
Expand Down Expand Up @@ -428,6 +429,6 @@ def generate_poses(receptor, refmol, target_molecules_filename, output_filename,
break

# Generate poses for all molecules
target_molecules_filename = prefix + f'-conformers-{fragment}.sdf'
target_molecules_filename = prefix + f'.csv'
output_filename = f'{prefix}-dockscores-{fragment}.sdf'
generate_poses(receptor, refmol, target_molecules_filename, output_filename)
1 change: 1 addition & 0 deletions synthetic-enumeration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Modeling of design conformations suggested by this [excellent blog post from Pat
* `nucleophilic_displacement_enumeration_for_FEP.csv` - nucleophilic displacement series (15918)
* `activity-data-2020-07-29.csv` - all compounds with activity data for retrospective benchmarking (888)
* `aminopyridine_compounds_for_FEP_benchmarking.csv` - 3-aminopyridine retrospective benchmarking compounds from Matthew Robinson (70)
* `fastgrant-table1.csv` - sentinel cases from Fast Grant application (Alpha Lee) (11)

### Docked conformers
* `primary_amine_enumeration_for_chodera_lab_FEP-permuted-conformers-x10789.sdf.gz`
Expand Down
Loading