diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..22f16e533e467292b131d74b4fe634decc1f889b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +*.pdb filter=lfs diff=lfs merge=lfs -text +*.sdf filter=lfs diff=lfs merge=lfs -text +*.csv filter=lfs diff=lfs merge=lfs -text diff --git a/fep_benchmark_inputs/README.md b/fep_benchmark_inputs/README.md new file mode 100644 index 0000000000000000000000000000000000000000..f1d756a22d012a8e7020d47bd055b725e3a75e3a --- /dev/null +++ b/fep_benchmark_inputs/README.md @@ -0,0 +1,23 @@ +# Inputs for running the binding free energy benchmark +The inputs for the free energy benchmark are divided into two sections: +* `fep_plus_inputs/` which contains the inputs for the FEP+ software (e.g. `fmp` files) and the scripts required to +run the benchmark. +* `structure_inputs/` which contain structural inputs in a format can be read by many computational chemistry platforms +(i.e. `PDB` and `sdf` files). + +This benchmark data set was constructed and validated using FEP+ and the data in the `structure_inputs` was derived from +the FEP+ `fmp` graph files.. + +## Arrangment of the input files +The benchmark data set consists of a number of congeneric series that have been grouped based on the publication where +the inputs were based on. As documented in the supporting information of the [accompanying manuscript](https://doi.org/10.26434/chemrxiv-2022-p2vpg), +many systems were modified from their original source. + +## Metadata +Details on the congeneric series subset, file naming scheme, protein name, original PDB reference, experimental binding +affinity dynamic range, number of input structures, and the DOI of the source on the source where the structures were +taken from, can be found in the file below: +* `benchmark_metadata.csv` + +The `Number of nodes` column in `benchmark_metadata.csv` refers to the number of ligand structural inputs. Some ligands +had multiple structural inputs as they were represented by multiple rotamers or protomer/tautomers. \ No newline at end of file diff --git a/fep_benchmark_inputs/benchmark_metadata.csv b/fep_benchmark_inputs/benchmark_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..1310bf8a1635951e1cd275a1aa7d5a3cdd59c919 --- /dev/null +++ b/fep_benchmark_inputs/benchmark_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdad4307424417583e8f1e27e195d56e8e5c88cae7354e52f713b16a1f07c07d +size 8065 diff --git a/fep_benchmark_inputs/fep_plus_inputs/README.md b/fep_benchmark_inputs/fep_plus_inputs/README.md new file mode 100644 index 0000000000000000000000000000000000000000..9b12ff93391f8390e41529d7ce79beac846aca60 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/README.md @@ -0,0 +1,42 @@ +# Benchmark inputs for FEP+ + +This directory contains the FEP+ input files (`.fmp`s) and submission scripts for running the extended benchmark data +set. There are 103 `fmp` files for a wide range of targets and congeneric series. The input +files are separated into 14 separate directories that reflect the origin of the data sets. Every `fmp` file in this +directory forms is part of the benchmark. + +## Contents +* `apply_all_corrections.sh` Apply post simulation corrections to all output fmp files that require them. This +script also collects the names and locations of the output fmp files into text files which facilitate analysis. +* `post_simulation_corrections.md` A description of the post simulation corrections. These corrections are +applied with `apply_all_corrections.sh`. +* `binding_mode_correction.py` The script to automatically apply binding mode corrections. This is needed for some +systems. +* `README.md`. This file. + +## Subset directories +The names of each directory and the corresponding subset title in the [accompanying manuscript](https://doi.org/10.26434/chemrxiv-2022-p2vpg). +* `bayer_macrocycles/`: Bayer Macrocycles +* `charge_annhil/`: FEP+ charge change set +* `fragments/`: FEP+ fragment data set +* `gpcrs/`: GPCRs +* `jacs_set/`: FEP+ R-group set +* `janssen_bace/`: Janssen BACE1 data sets +* `macrocycles/`: FEP+ macrocycles +* `mcs_docking/`: MCS docking sets +* `merck/`: The public Merck data set +* `misc/`: Miscellaneous data sets +* `opls_stress/`: OPLS stress set +* `opls_ddag`: OPLS private drug discovery data sets +* `scaffold_hoping/`: FEP+ scaffold hopping +* `waterset/`: FEP+ buried water set + +### Subset directory contents +Each directory has the following files +* `subset_metadata.csv`. Metadata on each subsystem, the naming scheme and the PDB each model was based on. +* `*.fmp` files. These are FEP+ format maps/perturbation graphs +* `setup_and_run.sh`. A submission script for all FEP+ maps in the that uses the settings described in the accompanying paper. +* ` run_all_corrections.sh`. A script to run all corrections on the fmp files in that directory. +* Additional files related to post-processing corrections to the results. + + diff --git a/fep_benchmark_inputs/fep_plus_inputs/apply_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/apply_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..16e878b3a1eb6c95d17d719b7718e39b20f2f012 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/apply_all_corrections.sh @@ -0,0 +1,192 @@ +################### +# Bayer macrocycles +################### +echo 'Collecting Bayer macrocycle data' + +## Name the outfmp files +echo "bayer_macrocycles/ftase_extraligs_custcore_stereo/ftase_extraligs_custcore_stereo_out.fmp" > bayer_macrocycles_outs.txt +echo "bayer_macrocycles/wagner_brd4/wagner_brd4_out.fmp" >> bayer_macrocycles_outs.txt + +####################### +#FEP+ charge change set +####################### +echo 'Collecting FEP+ charge set data' + +## Apply the corrections +cd charge_annhil +./run_all_corrections.sh +cd ../ + +## Name the output fmp file locations +PROTEINS=(cdk2 dlk egfr ephx2 irak4_s2 irak4_s3 itk jak1 jnk1 ptp1b tyk2) +for P in ${PROTEINS[*]} +do + echo "charge_annhil/${P}/${P}_pkacorr_out.fmp" >> charge_annhil_outs.txt +done +echo "charge_annhil/thrombin_whole_map/thrombin_whole_map_out.fmp" >> charge_annhil_outs.txt + +############ +# Fragements +############ +echo 'Collecting fragement set data' + +cd fragments +./run_all_corrections.sh +cd ../ + +PROTEINS=(frag_liga_auto frag_mcl1_noweak frag_mup1 frag_p38 hsp90_frag_2rings hsp90_frag_single_ring t4lysozyme_uvt) +for P in ${PROTEINS[*]} +do + echo "fragments/${P}/${P}_out.fmp" >> fragments_outs.txt +done + +echo "fragments/jak2_set1/jak2_set1_pkacorr_bmcorr_out.fmp" >> fragments_outs.txt +echo "fragments/jak2_set2_extra/jak2_set2_extra_bmcorr_out.fmp" >> fragments_outs.txt + +####### +# GPCRs +####### +echo 'Collecting GPCR data' +# Apply the corrections +cd gpcrs +./run_all_corrections.sh +cd ../ + +## Name the files +echo "gpcrs/p2y1_merged_out.fmp" > gpcrs_outs.txt +echo "gpcrs/a2a_hip278/a2a_hip278_sbpkacorr_out.fmp" >> gpcrs_outs.txt +echo "gpcrs/ox2_hip_custcore/ox2_out.fmp" >> gpcrs_outs.txt + +##################################### +# FEP+ R-group perutbation (JACS set) +##################################### +echo 'Collecting FEP+ R-group perutbation (JACS set) data' +cd jacs_set/ +./run_all_corrections.sh +cd ../ + +echo "jacs_set/jnk1_manual_flips/jnk1_manual_flips_out_bmcorr_out.fmp" > jacs_set_outs.txt +echo "jacs_set/mcl1_extra_flips/mcl1_extra_flips_bmcorr_out.fmp" >> jacs_set_outs.txt + +PROTEINS=(bace cdk2 jnk1_manual_flips mcl1_extra_flips p38 ptp1b thrombin_core tyk2) +for P in ${PROTEINS[*]} +do + echo "jacs_set/${P}/${P}_out.fmp" >> jacs_set_outs.txt +done + +################ +# Janssen BACE1 +############### +echo 'Collecting the Jansseen BACE1 data' + +cd janssen_bace +./run_all_corrections.sh +cd ../ + +echo "janssen_bace/bace_ciordia_retro/bace_ciordia_retro_pkacorr_out.fmp" > janssen_bace_outs.txt +echo "janssen_bace/bace_keranen_p2/bace_keranen_p2_bmcorr_out.fmp" >> janssen_bace_outs.txt +echo "janssen_bace/bace_ciordia_prospective/bace_ciordia_prospective_out.fmp" >> janssen_bace_outs.txt +echo "janssen_bace/bace_p3_arg368_in/bace_p3_arg368_in_out.fmp" >> janssen_bace_outs.txt + +################## +# FEP+ Macrocycles +################## +echo 'Collecting FEP+ macrocycle data' +PROTEINS=(2B8V_lig24and25_alpha05 2E9P_lig4to7_alpha05 2Q15_lig17to21_alpha05 3RKZ_lig62to70_alpha05 MHT1_lig3_alpha05 ck2_custcore_hotlys hsp90_3hvd_custcore) +for P in ${PROTEINS[*]} +do + echo "macrocycles/${P}/${P}_out.fmp" >> macrocycle_outs.txt +done + +############# +# MCS docking +############# +echo 'Collecting MCS docking data' +cd mcs_docking +./run_all_corrections.sh +cd ../ + +echo "mcs_docking/hne/hne_500mM_pkacorr_out.fmp" > mcs_docking_outs.txt +echo "mcs_docking/renin_customcore/renin_customcore_out.fmp" >> mcs_docking_outs.txt + +####### +# Merck +###### +echo 'Collecting Merck data' +cd merck +./run_all_corrections.sh +cd ../ + +echo 'merck/cdk8_5cei_new_helix_loop_extra/cdk8_symbmcorr_out.fmp' > merck_outs.txt +echo 'merck/cmet/cmet_out.fmp' >> merck_outs.txt +echo 'merck/eg5_extraprotomers/eg5_extraprotomers_pkacorr_out.fmp' >> merck_outs.txt +echo 'merck/hif2a_automap/hif2a_automap_symbmcorr_out.fmp' >> merck_outs.txt +#echo 'merck/pfkfb3_automap/pfkfb3_automap_symbmcorr_out_fmp' >> merck_outs.txt +echo 'merck/shp2/shp2_out.fmp' >> merck_outs.txt +echo 'merck/syk_4puz_fullmap/syk_pkacorr_out.fmp' >> merck_outs.txt +echo 'merck/tnks2_fullmap/tnks2_symcorr_pkacorr_out.fmp' >> merck_outs.txt + +############### +# Miscellaneous +############### +echo 'Collecting the miscellaneous data sets' +cd misc +./run_all_corrections.sh +cd ../ + +PROTEINS=(cdk8_koehler galectin3_extra hfaah hiv_prot_ekegren) +for P in ${PROTEINS[*]} +do + echo "misc/${P}/${P}_out.fmp" >> misc_outs.txt +done +echo 'misc/btk_extra_flip/btk_extra_flip_bmcorr_out.fmp' >> misc_outs.txt + +###################### +# OPLS drug discovery +##################### +echo 'Collecting the OPLS drug discovery data sets' +PROTEINS=(bathonP_ethers bathonP_thq bathonP_thq_ring hero0 hero1 hero3 hero5 iris lak1 lak2 lak3 orion) +for P in ${PROTEINS[*]} +do + echo "opls_ddag/${P}/${P}_out.fmp" >> opls_ddag_outs.txt +done + +############# +# OPLS Stress +############# +echo 'Collecting the OPLS stress set data' + +PROTEINS=(chk1_set1 chk1_set2 chk1_set3 chk1_set4 chk1_set5 chk1_set6 chk1_set7 cr_bace1 cr_bace2 fxa_set3 fxa_set4 fxa_set5 fxa_set6 hc_bace1 hc_bace2 pb_bace3 fxa_yoshikawa_set) +for P in ${PROTEINS[*]} +do + echo "opls_stress/${P}/${P}_out.fmp" >> opls_stress_outs.txt +done + +################### +# Scaffold hoppping +################### +echo 'Collecting the scaffold hopping data set' + +PROTEINS=(Bace1_4zsp CHK1_3u9n_corehop Era_2q70 Fxa_2ei8 TPSB2_3v7t) +for P in ${PROTEINS[*]} +do + echo "scaffold_hopping/${P}/${P}_out.fmp" >> scaffold_hopping_outs.txt +done + +########## +# Waterset +########## +echo 'Collecting the water displacement data set' + +cd waterset +./run_all_corrections.sh +cd ../ + +PROTEINS=(hsp90_kung brd41_ASH106 taf12 urokinase hsp90_woodhead) +for P in ${PROTEINS[*]} +do + echo "waterset/${P}/${P}_out.fmp" >> waterset_outs.txt +done +echo 'waterset/scyt_dehyd/scyt_dehyd_pkacorr_out.fmp' >> waterset_outs.txt +echo 'waterset/throm_nozob_hip75/throm_nozob_hip75_bmcorr_out.fmp' >> waterset_outs.txt + diff --git a/fep_benchmark_inputs/fep_plus_inputs/bayer_macrocycles/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/bayer_macrocycles/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..d05a40c327a4031f9f89e302b09c9afa15edda79 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/bayer_macrocycles/setup_and_run.sh @@ -0,0 +1,12 @@ +mkdir wagner_brd4 +cp wagner_brd4.fmp wagner_brd4 +cd wagner_brd4 +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME wagner_brd4 wagner_brd4.fmp -QARG "-P dev_GPU" +cd ../ + +mkdir ftase_extraligs_custcore_stereo +cp ftase_extraligs_custcore_stereo.fmp ftase_extraligs_custcore_stereo +cd ftase_extraligs_custcore_stereo +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 40000.0 -vacuum -ensemble muVT -core_hopping_lambda_windows 48 -seed 1 -JOBNAME ftase_extraligs_custcore_stereo ftase_extraligs_custcore_stereo.fmp -QARG "-P dev_GPU" +cd ../ + diff --git a/fep_benchmark_inputs/fep_plus_inputs/bayer_macrocycles/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/bayer_macrocycles/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f0539d24222cb913fc2a13a750817e4af792c3d --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/bayer_macrocycles/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35be65c292d93a73caf0b697469c10be5ef8f49fa8f04bbc72701090ade620c +size 335 diff --git a/fep_benchmark_inputs/fep_plus_inputs/binding_mode_correction.py b/fep_benchmark_inputs/fep_plus_inputs/binding_mode_correction.py new file mode 100644 index 0000000000000000000000000000000000000000..d157dd66d086cceab5cda0449e46cea60aae24b7 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/binding_mode_correction.py @@ -0,0 +1,242 @@ +import argparse +import sys +from collections import defaultdict +from typing import List + +import numpy as np + +from schrodinger.application.desmond.constants import BOLTZMANN +from schrodinger.application.desmond.measurement import Measurement +from schrodinger.application.scisol.packages.fep import graph +from schrodinger.structutils import analyze + + +def clean_bennett_from_map(g: graph.Graph): + """ + Removes the bennett complex and solvent free energy data and replace with the cycle closure correction DDG + predictions. This helps to simplify the application of the binding mode correction. + + :param g: An FEP+ graph with output data. + + Note + ----- + The graph is modified in place. + """ + # TODO: As this creates an inconsistency between the DDGs in the graph and the SID, the SID data is removed. + # The Jira ticket DESMOND-10777 has been raised to discuss the possibility of updating the SID in the future. + for e in g.edges_iter(): + e.complex_dg = e.ccc_ddg + e.solvent_dg = Measurement(0, 0) + e.vacuum_dg = None + e.complex_sid = None + e.solvent_sid = None + + +def get_binding_mode_nodes(g: graph.Graph) -> List[List[graph.Node]]: + """ + Extract the nodes that represent different binding modes of the same + ligand. SMILES are used to identify which ligands are the same. + + :param g: A graph that contains multiple binding modes of the ligands, with + each binding mode represented as a separate node. + + :return: The nodes of the binding modes as a list of lists. Each entry in + the list contains all the nodes of the different binding modes of the + same ligand. + """ + # Extract the unique SMILES of each node in the graph and place matching SMILES into the same dict entry + mode_nodes_dict = defaultdict(list) + for n in g.nodes_iter(): + smile = analyze.generate_smiles(n.struc, unique=True) + mode_nodes_dict[smile].append(n) + + # Return the nodes whose SMILES appear multiple times + return [val for val in mode_nodes_dict.values() if len(val) > 1] + + +def calc_mode_corrections(mode_nodes: List[List[graph.Node]], + temperature: float = 300.) -> List[np.ndarray]: + """ + Calculate the binding mode correction for each mode and for each ligand. + The presence of other binding modes serves to increase the binding strength + of a ligands. + + :param mode_nodes: A list of lists that contains the nodes of the different + binding modes of the same ligand. + :param temperature: The temperature of the simulation in Kelvin. + + :returns: The binding mode corrections for each ligand. Each correction + accounts for the presence of the other nodes of the same ligand. + """ + kT = BOLTZMANN * temperature + corrections = [] + for nodes in mode_nodes: + dgs = np.array([n.pred_dg.val for n in nodes]) + corrs = np.zeros(len(dgs)) + for i in range(len(dgs)): + corrs[i] = -kT * np.log(np.sum(np.exp(-(dgs - dgs[i]) / kT))) + corrections.append(corrs) + + return corrections + + +def apply_corrections(mode_nodes: List[List[graph.Node]], + corrections: List[np.ndarray]): + """ + Apply the binding mode correction to each edge that is connected to a node that represents one of at least two + binding modes of the same ligand. The edge data are modified in place. and nothing is returned. + + :param mode_nodes: A list of lists that contains the nodes of the different binding modes of the same ligand. + :param corrections: The binding mode corrections for each ligand. + """ + for nodes, correction in zip(mode_nodes, corrections): + # There is a different correction for each binding mode of the same ligand. + for n, corr in zip(nodes, correction): + # Apply correction to every edge the node is part of. + for e in n.edges: + if n == e[0]: + # Deduct the binding mode correction + e.complex_dg -= Measurement(corr, 0) + else: + # Add the correction + e.complex_dg += Measurement(corr, 0) + + +def correct_multiple_binding_modes( + g: graph.Graph) -> (List[List[graph.Node]], List[np.ndarray]): + """ + Automatically detects different modes, calculates the free energy correction, and applies it to the map. The input + map is modified in place. + + :param g: An FEP+ graph that contains multiple binding modes. + + :returns mode_nodes: A list of lists that contains the nodes of the different binding modes of the same ligand. + :returns corrections: The binding mode corrections for each ligand. + """ + # Simplify the map by replacing all the bennett DG information with the cycle closure corrected DGs + clean_bennett_from_map(g) + # Find which ligands have multiple binding modes using canonicalized SMILES: + mode_nodes = get_binding_mode_nodes(g) + # Calculate the binding mode corrections and apply to the map: + corrections = calc_mode_corrections(mode_nodes) + apply_corrections(mode_nodes, corrections) + g.calc_cycle_closure() + + return mode_nodes, corrections + + +def merge_ligand_nodes(g: graph.Graph, mode_nodes: List[List[graph.Node]], + corrections: List[np.ndarray]): + """ + Merge all nodes of different binding modes into a single one. The most + favourable binding mode of each ligand is retained. The graph is modified + in place. + + :param g: An FEP+ graph that contains multiple binding modes. Cycle closure + must have called for the map for this function to run. + :param mode_nodes: A list of lists that contains the nodes of the different + binding modes of the same ligand. + :param corrections: The binding mode corrections for each ligand. + """ + for n in g.nodes_iter(): + if n.pred_dg is None: + raise ValueError('Cycle closure must be called for the input map.') + + # Determine which nodes to keep and which nodes to discard. + # The mode that requires the least correction is the most favourable and it will be retained. + to_merge = [] + to_keep = [] + for c in corrections: + keep_ind = np.where(c == np.max(c))[0][0] + to_merge.append(np.where(c != c[keep_ind])[0]) + to_keep.append(keep_ind) + + # Add the edges of the binding modes into the one that will be retained. + nodes_to_delete = [] + nodes_to_keep = [] + for nodes, merge_inds, keep_inds in zip(mode_nodes, to_merge, to_keep): + for i in merge_inds: + # Add the neighbours of the other binding modes to the node that will be kept. + for n in nodes[i].neighbors: + g.add_edge(nodes[keep_inds], n) + nodes_to_delete.append(nodes[i]) + nodes_to_keep.append(nodes[keep_inds]) + + # Looping through the nodes that will be kept, going through the edges, and adding the predicted binding data + for nodes in nodes_to_keep: + for e in nodes.edges: + n_initial, n_final = e.direction + e.complex_dg = n_final.pred_dg - n_initial.pred_dg + e.solvent_dg = Measurement(0, 0) + e.vacuum_dg = None + + # Finally deleting the nodes of the duplicate binding modes. + g.remove_nodes_from(nodes_to_delete) + + return nodes_to_keep + + +def main(argv=None): + usage = """ + Let map_out.fmp be an output from FEP+ that has different binding modes of some of the ligands. To + calculate the relative binding free between ligands in a way that accounts for the presence of multiple binding + modes, type + + $SCHRODINGER/run -FROM scisol binding_mode_correction.py map_out.fmp -o map_bmcorr_out.fmp + + By default, the output 'map_bmcorr_out.fmp' has nodes of the same ligand merged into one. Edges between merged nodes + do not have trajectory (fmpdb) information. To not merge the nodes, use the flag '-no-merge', like this + + $SCHRODINGER/run -FROM scisol binding_mode_correction.py map_out.fmp -o map_bmcorr_out.fmp -no-merge + """ + description = """ + In FEP+, one can run maps that have different binding modes of ligands in different nodes. This script automatically + detects multiple binding modes in an FEP+ map and applies the binding mode correction to the calculated relative free + energies. When using this script, there are no limitations to the number of ligands and poses, or on the geometry of the map. + + To aid visualization and MUE and RMSE calculation, nodes of the same ligand are automatically merged into a node + that represents the most favorable binding mode, although this feature can be switched off. + + When applying the corrections, the Bennett DDGs are replaced with cycle closure corrected DDGs. As this creates an + inconsistency between the Bennett DDGs in the map and SID data, the SID data is removed from the map. + """ + parser = argparse.ArgumentParser(usage=usage, description=description) + parser.add_argument( + 'infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes." + ) + parser.add_argument( + '-o', + dest='outfile', + type=str, + help= + "The name of the output fmp file that has the binding mode correction for each edge, default='bmcorr_out.fmp'.", + default='bmcorr_out.fmp') + parser.add_argument( + '-no-merge', + action='store_true', + dest='no_merge', + help= + 'Option to NOT merge nodes of the same binding mode into most favorable, default=False.', + default=False) + args = parser.parse_args(argv) + + # Load the map that contains ligands with at least 2 binding modes: + g = graph.Graph.deserialize(args.infile) + + if g.fep_type != graph.FEP_TYPES.SMALL_MOLECULE: + sys.exit("Only small molecule graphs are supported") + + # Detect alternate binding modes and apply the correction: + mode_nodes, corrections = correct_multiple_binding_modes(g) + + if not args.no_merge: + merge_ligand_nodes(g, mode_nodes, corrections) + g.calc_cycle_closure() + + g.write(args.outfile) + + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/cdk2_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/cdk2_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..698ed054c8455cf98ce70f0898bb1af21e661258 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/cdk2_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.5 + +# ligand ligand pka +39charg 39neu 4.60 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/cdk2_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/cdk2_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..4d13eb405a3d34cfcbaa0331a520d3d2e444f85e --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/cdk2_pka.txt @@ -0,0 +1,4 @@ +pH 7.5 + +# ligand ligand pka +39charg 39neu 3.23 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/dlk_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/dlk_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..e800a4289d93836b8844ec12ad279dcb58094f77 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/dlk_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.5 +#Lig pKa +4neu 4charg 9.87 +17neu 17charg 8.01 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/dlk_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/dlk_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..65b861107c3c9af71f40c7ae29e45fc177a9e2f4 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/dlk_pka.txt @@ -0,0 +1,4 @@ +pH 7.5 +#Lig pKa +4neu 4charg 9.34 +17neu 17charg 6.17 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/egfr_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/egfr_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..a65765a5a7172fed05b904f0fcba1889a3c33ac8 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/egfr_epikpka.txt @@ -0,0 +1,7 @@ +pH 7.5 +#Lig pKa +27neu 27chargR 8.54 +27neu 27chargS 8.54 +28neu 28charg 7.7 +29neu 29charg 9.15 +30neu 30charg 8.74 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/egfr_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/egfr_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..68678af5f376b1d04108f7185f6438be42a93f78 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/egfr_pka.txt @@ -0,0 +1,7 @@ +pH 7.5 +#Lig pKa +27neu 27chargR 8.25 +27neu 27chargS 8.30 +28neu 28charg 9.48 +29neu 29charg 8.61 +30neu 30charg 8.73 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ephx2_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ephx2_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..3d843da8128c12a1ef8ddbfdb70f3fad47b47ce1 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ephx2_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.0 +#Lig pKa +19charg 19neu 4.43 +47charg 47neu 4.6 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ephx2_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ephx2_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..e8dd3f559807623942bf3c7f51195528d790ef6d --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ephx2_pka.txt @@ -0,0 +1,4 @@ +pH 7.0 +#Lig pKa +19charg 19neu 3.43 +47charg 47neu 3.25 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s2_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s2_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..183b4c538cfa2bdb2f09401ad3dc63cf05366826 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s2_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +5neu 5charg 8.43 +17neu 17charg 7.94 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s2_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s2_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..36ab5a53f6b175d8dbaa0f16c547d65af9adebb3 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s2_pka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +5neu 5charg 7.24 +17neu 17charg 7.67 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s3_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s3_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..4adca133caa7a2f8c9a9e83e0460602a9507b40c --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s3_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +19neu 19charg 10.33 +28neu 28charg 11.14 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s3_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s3_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..ae761fdd0c6e845dea071962480182dbe22f5451 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/irak4_s3_pka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +19neu 19charg 8.65 +28neu 28charg 8.5 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/itk_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/itk_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..e3f27e4ed4b036b1ba254e89077b0d180ec5a1f7 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/itk_epikpka.txt @@ -0,0 +1,3 @@ +pH 7.2 +#Lig pKa +1neu 1charg 9.01 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/itk_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/itk_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..6362caf821cb0194640b8cdfbc4bc91246967346 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/itk_pka.txt @@ -0,0 +1,3 @@ +pH 7.2 +#Lig pKa +1neu 1charg 8.91 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jak1_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jak1_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..55b071e6e7fe5dd52212dfd374e538016519beae --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jak1_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +16neu 16charg 9.81 +18neu 18charg 8.67 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jak1_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jak1_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd8d2034dbfbf131abd40ee4586ce6bb20175834 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jak1_pka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +16neu 16charg 8.83 +18neu 18charg 6.25 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jnk1_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jnk1_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..b1ab60c3cc5f746fcdd098f1765f13367be27f7d --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jnk1_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +19a_neu 19a_charg 8.38 +19b_charg 19b_neu 4.25 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jnk1_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jnk1_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..06f31914319f87a892c886ee51b6ce4d7860cfbf --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/jnk1_pka.txt @@ -0,0 +1,4 @@ +pH 7.2 +#Lig pKa +19a_neu 19a_charg 9.46 +19b_charg 19b_neu 2.13 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ptp1b_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ptp1b_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc3bc786c27a939442d1d21c05b87e4950388503 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ptp1b_epikpka.txt @@ -0,0 +1,3 @@ +pH 7.0 +#Lig pKa +26neu 26charg 11.23 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ptp1b_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ptp1b_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..676ab46c182528c5661e3e2bdc5435d2c7465045 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/ptp1b_pka.txt @@ -0,0 +1,3 @@ +pH 7.0 +#Lig pKa +26neu 26charg 9.31 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..a8b29d37d203565f7e9030c8aa779eb04344ecb0 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/run_all_corrections.sh @@ -0,0 +1,8 @@ +PROTEINS=(cdk2 dlk egfr ephx2 irak4_s2 irak4_s3 itk jak1 jnk1 ptp1b tyk2) +for P in ${PROTEINS[*]} +do + cd "${P}" + $SCHRODINGER/run -FROM scisol pka_tautomer_correction.py "${P}"_out.fmp -pka-file ../"${P}"_pka.txt -o "${P}"_pkacorr_out.fmp + cd ../ +done + diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..4741a4e79249cd6c1df5a4bd2ea274b7665776cd --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/setup_and_run.sh @@ -0,0 +1,10 @@ +PROTEINS=(cdk2 dlk egfr ephx2 irak4_s2 irak4_s3 itk jak1 jnk1 ptp1b thrombin_whole_map tyk2) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..7d919e445520f0d96a7c442fbb993e6d9c3bfb57 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366d46ca0a92d6c91ca1182571cfe156d4c8c4a2024fb78f49fe7e2bbdf02442 +size 1072 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/tyk2_epikpka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/tyk2_epikpka.txt new file mode 100644 index 0000000000000000000000000000000000000000..1adc49c67d6f07f15675eeb2d3232c94ca79a6dd --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/tyk2_epikpka.txt @@ -0,0 +1,4 @@ +pH 7.0 +#Lig pKa +jmc_3charg jmc_32neu 4.53 +ejm_52neu ejm_52charg 8.80 diff --git a/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/tyk2_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/tyk2_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..537e64f3b11e62bf62adcf60e65e2e0bd825a4fb --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/charge_annhil/tyk2_pka.txt @@ -0,0 +1,4 @@ +pH 7.0 +#Lig pKa +jmc_3charg jmc_32neu 3.52 +ejm_52neu ejm_52charg 9.36 diff --git a/fep_benchmark_inputs/fep_plus_inputs/fragments/jak2_set1_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/fragments/jak2_set1_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ccd3bde73be4bef7d4be0d4e6d6e3988d7741e1 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/fragments/jak2_set1_pka.txt @@ -0,0 +1,4 @@ +pH 7.0 + +# ligand ligand percent percent +4a 4b 0.5 0.5 diff --git a/fep_benchmark_inputs/fep_plus_inputs/fragments/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/fragments/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..5be6af0df5d17c868c4c9d1113c201492db73095 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/fragments/run_all_corrections.sh @@ -0,0 +1,11 @@ +cp jak2_set1_pka.txt run_jak2_set1_corrs.sh jak2_set1 +cd jak2_set1 +./run_jak2_set1_corrs.sh +cd ../ + +cd jak2_set2_extra +cp ../run_jak2_set2_corrs.sh . +./run_jak2_set2_corrs.sh +rm run_jak2_set2_corrs.sh +cd ../ + diff --git a/fep_benchmark_inputs/fep_plus_inputs/fragments/run_jak2_set1_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/fragments/run_jak2_set1_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..ecebda31779a5e4d2f97f8095279dad67cfaac80 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/fragments/run_jak2_set1_corrs.sh @@ -0,0 +1,3 @@ +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py jak2_set1_out.fmp -p jak2_set1_pka.txt -o jak2_set1_pkacorr_out.fmp +$SCHRODINGER/run -FROM scisol binding_mode_correction.py jak2_set1_pkacorr_out.fmp -o jak2_set1_pkacorr_bmcorr_out.fmp + diff --git a/fep_benchmark_inputs/fep_plus_inputs/fragments/run_jak2_set2_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/fragments/run_jak2_set2_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..8c7c1d017518fe535ea7ca228766ca83d120db08 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/fragments/run_jak2_set2_corrs.sh @@ -0,0 +1,2 @@ +$SCHRODINGER/run -FROM scisol binding_mode_correction.py jak2_set2_extra_out.fmp -o jak2_set2_extra_bmcorr_out.fmp + diff --git a/fep_benchmark_inputs/fep_plus_inputs/fragments/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/fragments/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..382c9ff9c352c5c170c9601530eeb635326a0c34 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/fragments/setup_and_run.sh @@ -0,0 +1,10 @@ +PROTEINS=(frag_liga_auto frag_mcl1_noweak frag_mup1 frag_p38 hsp90_frag_2rings hsp90_frag_single_ring jak2_set1 jak2_set2_extra t4lysozyme_uvt) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + diff --git a/fep_benchmark_inputs/fep_plus_inputs/fragments/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/fragments/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..1db03cd2f313843d8111d6bac486bab7fb3527c0 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/fragments/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f0c1b87248e0a7896f0e6f79577f696d027fd186aab6eb5165cb638c329bd7 +size 908 diff --git a/fep_benchmark_inputs/fep_plus_inputs/gpcrs/a2a_epik_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/a2a_epik_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..20bbf50456fc8b0427ef3470286024cab7b6f0a3 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/a2a_epik_pka.txt @@ -0,0 +1,6 @@ +pH 7.5 + +4o_4o deprotonated_9.84 +4e D_4eD deprotonated_8.43 +4e U 4eu deprotonated_8.43 +4f_4f deprotonated_10.72 diff --git a/fep_benchmark_inputs/fep_plus_inputs/gpcrs/a2a_symbmcorr.py b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/a2a_symbmcorr.py new file mode 100644 index 0000000000000000000000000000000000000000..91ce61b0a3b745876b1754c7ce4052cb7de6b1c6 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/a2a_symbmcorr.py @@ -0,0 +1,99 @@ +from schrodinger.application.scisol.packages.fep import graph +import numpy as np +import argparse + +import sys +sys.path.append('../') +import binding_mode_correction as bmc + +# Add the symmetry corrections +degree_of_symm = {'4a':4, '4a flipped':4, + '4b D':2, + '4b U':2, + '4c':4, + '4d':4, + '4e D':2, '4eD deprotonated':2, + '4e U':2, '4eU deprotonated':2, + '4f':4, '4f deprotonated':4, + '4g':4, + '4h':4, + '4i':4, + '4jR':2, + '4jS':2, + '4kD':2, + '4kU':2, + '4lD':2, + '4lU':2, + '4m D':2, + '4m U':2, + '4n':4, + '4o':4, '4o deprotonated':4, + '4q':4, + '4r D':2, + '4r U':2} + +def get_lignames(edge): + sep = edge.short_id_title.split('==>') + lig1 = sep[0].split(':')[1].strip() + lig2 = sep[1].split(':')[1].strip() + return lig1, lig2 + + + +def main(argv=None): + usage=""" + Apply the symmetry and binding mode correction to a particular map. + + $SCHRODINGER/run symbmcorr.py map_out.fmp -o map_bmcorr_out.fmp + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="If entered, the name of the corrected map, default=None.", + default=None) + args = parser.parse_args(argv) + + + g = graph.Graph.deserialize(args.infile) + + # Remove edges if they don't have predictions: + remove_edges = [] + for e in g.edges_iter(): + if e.complex_dg is None or e.solvent_dg is None: + remove_edges.append(e) + + if len(remove_edges) > 0: + print('Removing {} edges as they do not have results'.format(len(remove_edges))) + g.remove_edges_from(remove_edges) + + remove_nodes = [] + for n in g.nodes_iter(): + if n.pred_dg is None: + remove_nodes.append(n) + + if len(remove_nodes) > 0: + print('Removing {} nodes as they do not have results'.format(len(remove_nodes))) + g.remove_nodes_from(remove_nodes) + + kT =0.596 + for e in g.edges_iter(): + l1, l2 = get_lignames(e) + total_corr = 0 + # Symmetry correction + total_corr += kT * np.log(degree_of_symm[l1]) + total_corr -= kT * np.log(degree_of_symm[l2]) + e.complex_dg += total_corr + + g.calc_cycle_closure() + + mode_nodes, corrections = bmc.correct_multiple_binding_modes(g) + bmc.merge_ligand_nodes(g, mode_nodes, corrections) + g.calc_cycle_closure() + g.write(args.outfile) + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/gpcrs/run_a2a_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/run_a2a_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..f2ad9c6addb5cca958f74f3672265725dd9848bb --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/run_a2a_corrs.sh @@ -0,0 +1,3 @@ +$SCHRODINGER/run a2a_symbmcorr.py a2a_hip278/a2a_hip278_out.fmp -o a2a_hip278/a2a_hip278_symbmcorr_out.fmp +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py a2a_hip278/a2a_hip278_symbmcorr_out.fmp -o a2a_hip278/a2a_hip278_sbpkacorr_out.fmp -s_ -pka-file a2a_epik_pka.txt + diff --git a/fep_benchmark_inputs/fep_plus_inputs/gpcrs/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..9510707627afaff49e335395f5abc7ac22e7ae12 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/run_all_corrections.sh @@ -0,0 +1,3 @@ +./run_a2a_corrs.sh +$SCHRODINGER/run -FROM scisol merge_graph.py p2y1_meta_sub/p2y1_meta_sub_out.fmp p2y1_ortho_sub/p2y1_ortho_sub_out.fmp -o p2y1_merged_out.fmp -sc + diff --git a/fep_benchmark_inputs/fep_plus_inputs/gpcrs/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..c393df95bbe2060be6c6d0a418e2c6ac0e99e5af --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/setup_and_run.sh @@ -0,0 +1,15 @@ +PROTEINS=(a2a_hip278 p2y1_meta_sub p2y1_ortho_sub) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + +mkdir ox2_hip_custcore +cp ox2_hip_custcore.fmp ox2_hip_custcore +cd ox2_hip_custcore +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -modify_dihe -ensemble muVT -seed 1 -JOBNAME ox2 ox2_hip_custcore.fmp -QARG "-P dev_GPU" +cd ../ diff --git a/fep_benchmark_inputs/fep_plus_inputs/gpcrs/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7c1e0e990233d339b6c2af10884b791257d1666 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/gpcrs/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9313a9f142f12eea9556462a94c83da9d1f9c7bc9f229471490419255f8ab5e5 +size 419 diff --git a/fep_benchmark_inputs/fep_plus_inputs/jacs_set/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/jacs_set/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..8687203eb26d67da49be0f603dad081be8ae86d2 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/jacs_set/run_all_corrections.sh @@ -0,0 +1,2 @@ +$SCHRODINGER/run -FROM scisol binding_mode_correction.py jnk1_manual_flips/jnk1_manual_flips_out.fmp -o jnk1_manual_flips/jnk1_manual_flips_out_bmcorr_out.fmp +$SCHRODINGER/run -FROM scisol binding_mode_correction.py mcl1_extra_flips/mcl1_extra_flips_out.fmp -o mcl1_extra_flips/mcl1_extra_flips_bmcorr_out.fmp diff --git a/fep_benchmark_inputs/fep_plus_inputs/jacs_set/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/jacs_set/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..48b21a5fd429bd6f08e5e51b9173555c0db61e05 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/jacs_set/setup_and_run.sh @@ -0,0 +1,9 @@ +PROTEINS=(bace cdk2 jnk1_manual_flips mcl1_extra_flips p38 ptp1b thrombin_core tyk2) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done diff --git a/fep_benchmark_inputs/fep_plus_inputs/jacs_set/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/jacs_set/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..77a0f47d844e2c3a54a42a96d820f67271145bb5 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/jacs_set/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512de45d69255c67939d04439d00582c827e2d195a112abc52eb304ad29de8ed +size 731 diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/bace_ciordia_retro_symbmcorr.py b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/bace_ciordia_retro_symbmcorr.py new file mode 100644 index 0000000000000000000000000000000000000000..386840c2501b1b5ddcdb7a5bfdcab38a254e208d --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/bace_ciordia_retro_symbmcorr.py @@ -0,0 +1,100 @@ +from schrodinger.application.scisol.packages.fep import graph +import numpy as np +import argparse +from itertools import combinations + +import sys +sys.path.append('/home/ross/Work/schrython/') +import fep_tools as ftools +import binding_mode_correction as bmc + + +def get_lignames(edge): + sep = edge.short_id_title.split('==>') + lig1 = sep[0].split(':')[1].strip() + lig2 = sep[1].split(':')[1].strip() + return lig1, lig2 + + +# Add the symmetry corrections. Specific to the map +degree_of_symm = {'17':2} + +def get_error_before_corrs(g): + pred_dgs = [] + exp_dgs = [] + for n in g.nodes_iter(): + ligname = n.short_id_title.split(":")[1].strip() + if 'flip' not in ligname: + pred_dgs.append(n.pred_dg.val) + exp_dgs.append(n.exp_dg.val) + + pred_dgs = np.array(pred_dgs) + exp_dgs = np.array(exp_dgs) + + pred_dgs += np.mean(exp_dgs) - np.mean(pred_dgs) + + indices = np.arange(len(exp_dgs)) + pred_pairwise = np.array([pred_dgs[i] - pred_dgs[j] for i, j in combinations(indices, 2)]) + exp_pairwise = np.array([exp_dgs[i] - exp_dgs[j] for i, j in combinations(indices, 2)]) + + sq_diffs = (exp_pairwise - pred_pairwise)**2 + boot_rmsds = np.zeros(10000) + for b in range(10000): + samp_inds = np.random.choice(len(sq_diffs), len(sq_diffs)) + arr_boot = sq_diffs[samp_inds] + boot_rmsds[b] = np.sqrt(arr_boot.mean()) + + pair_rmsd = np.sqrt(np.mean((exp_pairwise - pred_pairwise)**2)) + print('Pairwise RMSD without extra rotamers and symmetry correction = {:.2f} +/- {:.2f} kcal/mol'.format(pair_rmsd, np.std(boot_rmsds))) + + +def main(argv=None): + usage=""" + Apply the symmetry and binding mode correction to a particular map. + + $SCHRODINGER/run symbmcorr.py map_out.fmp -o map_bmcorr_out.fmp + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="If entered, the name of the corrected map, default=None.", + default=None) + args = parser.parse_args(argv) + + g = graph.Graph.deserialize(args.infile) + + ftools.pretty_print_fmp(g) + print() + print(get_error_before_corrs(g)) + print() + + # SYMMETRY CORRECTION + kT =0.596 + for e in g.edges_iter(): + l1, l2 = get_lignames(e) + total_corr = 0 + # Symmetry correction + if l1 in degree_of_symm: + total_corr += kT * np.log(degree_of_symm[l1]) + if l2 in degree_of_symm: + total_corr -= kT * np.log(degree_of_symm[l2]) + e.complex_dg += total_corr + + g.calc_cycle_closure() + + # BINDING MODE CORRECTION + mode_nodes, corrections = bmc.correct_multiple_binding_modes(g) + bmc.merge_ligand_nodes(g, mode_nodes, corrections) + g.calc_cycle_closure() + + ftools.pretty_print_fmp(g) + + if args.outfile is not None: + g.write(args.outfile) + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/bace_retrospective_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/bace_retrospective_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ab2ba83f616d0fadf70d3f1f551c05edfa9747e --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/bace_retrospective_pka.txt @@ -0,0 +1,4 @@ +pH 4.5 + +# ligand ligand pka +30 30_protonated 6.45 diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_all_corrections.py b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_all_corrections.py new file mode 100755 index 0000000000000000000000000000000000000000..8a0be09280d95cd0f1b3095dfc7d73b6e95583a1 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_all_corrections.py @@ -0,0 +1,2 @@ +./run_bace_ciordia_retro_corrs.sh +./run_bace_keranen_p2_corrs.sh diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_bace_ciordia_retro_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_bace_ciordia_retro_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..5727c5a32533d54b6cf6be4f20b0e233f439e602 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_bace_ciordia_retro_corrs.sh @@ -0,0 +1 @@ +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py bace_ciordia_retro/bace_ciordia_retro_out.fmp -pka-file bace_retrospective_pka.txt -o bace_ciordia_retro/bace_ciordia_retro_pkacorr_out.fmp diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_bace_keranen_p2_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_bace_keranen_p2_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..597fcef329010f758c948b73961222db67b10922 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/run_bace_keranen_p2_corrs.sh @@ -0,0 +1 @@ +$SCHRODINGER/run -FROM scisol binding_mode_correction.py bace_keranen_p2/bace_keranen_p2_out.fmp -o bace_keranen_p2/bace_keranen_p2_bmcorr_out.fmp diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..6a742c2de847468008fab00f089b3c3ec980bc38 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/setup_and_run.sh @@ -0,0 +1,15 @@ +PROTEINS=(bace_ciordia_prospective bace_ciordia_retro bace_keranen_p2) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + +mkdir bace_p3_arg368_in +cp bace_p3_arg368_in.fmp bace_p3_arg368_in +cd bace_p3_arg368_in +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -core-hopping-lambda-windows 32 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME bace_p3 bace_p3_arg368_in.fmp -QARG "-P dev_GPU" +cd .. diff --git a/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..3c48ced8cbfb9eeac40eb61dcaab155cee46fd18 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/janssen_bace/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b2be5e275f8f72a052ccca2c1cd04159669ee99059abf21b926933b7063921 +size 505 diff --git a/fep_benchmark_inputs/fep_plus_inputs/macrocycles/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/macrocycles/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..a15dd5db01e45bc00211ad1ed4824e6a899df0fc --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/macrocycles/setup_and_run.sh @@ -0,0 +1,19 @@ +PROTEINS=(2B8V_lig24and25_alpha05 2E9P_lig4to7_alpha05 2Q15_lig17to21_alpha05 3RKZ_lig62to70_alpha05 MHT1_lig3_alpha05) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + +PROTEINS=(ck2_custcore_hotlys hsp90_3hvd_custcore) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -modify_dihe -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done diff --git a/fep_benchmark_inputs/fep_plus_inputs/macrocycles/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/macrocycles/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..07f763f232f3048b9c130f3e52d988caf84ccf05 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/macrocycles/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7399823b4a570f234d7a23cfc1354e75355444dbae7074af2338ed0796a1652e +size 803 diff --git a/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/hne_epik_pka.txt b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/hne_epik_pka.txt new file mode 100644 index 0000000000000000000000000000000000000000..aca51bd3260ce52bcc30376e4e5313e3388a8445 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/hne_epik_pka.txt @@ -0,0 +1,7 @@ +pH 7.4 + +# ligand ligand pka +21 neutral_21_8.53 +21 (SP core01) neutral_21 (SP core01)_8.83 +16 neutral_16_3.58 +19 neutral_19_3.66 diff --git a/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..0ac01049ee5a1ab9e1ededa561c3515c59d4ec33 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/run_all_corrections.sh @@ -0,0 +1,2 @@ +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py hne/hne_500mM_out.fmp -pka-file hne_epik_pka.txt -o hne/hne_500mM_pkacorr_out.fmp -s_ + diff --git a/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..20776b89142bb0e4d49242c14614677d3d6acaa0 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/setup_and_run.sh @@ -0,0 +1,12 @@ + +mkdir renin_customcore +cp renin_customcore.fmp renin_customcore +cd renin_customcore +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ffbuilder -ff-host bolt_cpu:50 -ppj 2 -time 20000.0 -ensemble muVT -seed 1 -vacuum -lambda_windows 12 -core_hopping_lambda_windows 16 -charged_lambda_windows 24 -JOBNAME renin_customcore renin_customcore.fmp -TMPLAUNCHDIR -QARG "-P dev_GPU" -modify-dihe +cd ../ + +mkdir hne +cp hne.fmp hne +cd hne +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ffbuilder -ff-host bolt_cpu:50 -ppj 2 -time 20000.0 -ensemble muVT -salt 0.5 -seed 1 -vacuum -lambda_windows 12 -core_hopping_lambda_windows 16 -charged_lambda_windows 24 -JOBNAME hne_500mM hne.fmp -TMPLAUNCHDIR -QARG "-P dev_GPU" +cd ../ diff --git a/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..63c7793fcb12e4042bef57bfd620475c1dabcaf5 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/mcs_docking/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aca55145c5f6b51430fe7854d0edea9d56f2e64c10e5e20279992b64803b85b +size 293 diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/cdk8_symbmcorr.py b/fep_benchmark_inputs/fep_plus_inputs/merck/cdk8_symbmcorr.py new file mode 100644 index 0000000000000000000000000000000000000000..592162ac9830a2cb436681a62c8b1f7c98d29748 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/cdk8_symbmcorr.py @@ -0,0 +1,133 @@ +from schrodinger.application.scisol.packages.fep import graph +import numpy as np +import argparse +from itertools import combinations + + +import sys +sys.path.append('../') +import binding_mode_correction as bmc + + +def get_lignames(edge): + sep = edge.short_id_title.split('==>') + lig1 = sep[0].split(':')[1].strip() + lig2 = sep[1].split(':')[1].strip() + return lig1, lig2 + +def get_pairwise_diffs(g): + pred_dg = np.zeros(len(g)) + exp_dg = np.zeros(len(g)) + for i, n in enumerate(g.nodes_iter()): + pred_dg[i] = n.pred_dg + exp_dg[i] = n.exp_dg + + #print('Error before', np.mean(np.abs(pred_dg - exp_dg))) + # Make sure the predictions are centered on the experimental dgs + pred_dg += np.mean(exp_dg) - np.mean(pred_dg) + #print('Error after', np.mean(np.abs(pred_dg - exp_dg))) + + indices = np.arange(len(g)) + pred_pairwise = np.array([pred_dg[i] - pred_dg[j] for i, j in combinations(indices, 2)]) + exp_pairwise = np.array([exp_dg[i] - exp_dg[j] for i, j in combinations(indices, 2)]) + + return exp_pairwise, pred_pairwise + + +def get_error_before_corrs(g): + pred_dgs = [] + exp_dgs = [] + for n in g.nodes_iter(): + ligname = n.short_id_title.split(":")[1].strip() + if 'flipped' not in ligname: + pred_dgs.append(n.pred_dg.val) + exp_dgs.append(n.exp_dg.val) + + pred_dgs = np.array(pred_dgs) + exp_dgs = np.array(exp_dgs) + + pred_dgs += np.mean(exp_dgs) - np.mean(pred_dgs) + + indices = np.arange(len(exp_dgs)) + pred_pairwise = np.array([pred_dgs[i] - pred_dgs[j] for i, j in combinations(indices, 2)]) + exp_pairwise = np.array([exp_dgs[i] - exp_dgs[j] for i, j in combinations(indices, 2)]) + + sq_diffs = (exp_pairwise - pred_pairwise)**2 + boot_rmsds = np.zeros(10000) + for b in range(10000): + samp_inds = np.random.choice(len(sq_diffs), len(sq_diffs)) + arr_boot = sq_diffs[samp_inds] + boot_rmsds[b] = np.sqrt(arr_boot.mean()) + + pair_rmsd = np.sqrt(np.mean((exp_pairwise - pred_pairwise)**2)) + #print('Pairwise RMSD without extra rotamers and symmetry correction = {:.2f} +/- {:.2f} kcal/mol'.format(pair_rmsd, np.std(boot_rmsds))) + + +# Add the symmetry corrections. Specific to the map +no_sym_corr = ['13','13 flipped', '14', '15', '16', '16 flipped','17', '17 flipped', '18', '18 flipped', '42','43','43 flipped', '44', '44 flipped', '45','45 flipped'] + +def main(argv=None): + usage=""" + Apply the symmetry and binding mode correction to a particular map. + + $SCHRODINGER/run symbmcorr.py map_out.fmp -o map_bmcorr_out.fmp + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="If entered, the name of the corrected map, default=None.", + default=None) + args = parser.parse_args(argv) + + g = graph.Graph.deserialize(args.infile) + + get_error_before_corrs(g) + + # Remove edges if they don't have predictions: + remove_edges = [] + for e in g.edges_iter(): + if e.complex_dg is None or e.solvent_dg is None: + remove_edges.append(e) + + if len(remove_edges) > 0: + #print('Removing {} edges as they do not have results'.format(len(remove_edges))) + g.remove_edges_from(remove_edges) + + remove_nodes = [] + for n in g.nodes_iter(): + if n.pred_dg is None: + remove_nodes.append(n) + + if len(remove_nodes) > 0: + #print('Removing {} nodes as they do not have results'.format(len(remove_nodes))) + g.remove_nodes_from(remove_nodes) + + + # SYMMETRY CORRECTION + kT =0.596 + for e in g.edges_iter(): + l1, l2 = get_lignames(e) + total_corr = 0 + # Symmetry correction + if l1 not in no_sym_corr: + total_corr += kT * np.log(2) + if l2 not in no_sym_corr: + total_corr -= kT * np.log(2) + e.complex_dg += total_corr + + g.calc_cycle_closure() + + # BINDING MODE CORRECTION + mode_nodes, corrections = bmc.correct_multiple_binding_modes(g) + bmc.merge_ligand_nodes(g, mode_nodes, corrections) + g.calc_cycle_closure() + + if args.outfile is not None: + g.write(args.outfile) + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/eg5_populations_epik.txt b/fep_benchmark_inputs/fep_plus_inputs/merck/eg5_populations_epik.txt new file mode 100644 index 0000000000000000000000000000000000000000..913e186bdcc0f0294a8a63d9da2ade4d265dc2f2 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/eg5_populations_epik.txt @@ -0,0 +1,6 @@ +CHEMBL1084935-CHEMBL1084935_1-0.9078154298419999-0.09218457015800006 +CHEMBL1096002-CHEMBL1096002_1-0.9853087750803547-0.014691224919645345 +CHEMBL1084677-CHEMBL1084677_1-0.9952314810830681-0.004768518916931795 +CHEMBL1096003-CHEMBL1096003_1-0.9513853050845874-0.04861469491541258 +CHEMBL1084143-CHEMBL1084143_1-0.9944008756500452-0.005599124349954684 +CHEMBL1084676-CHEMBL1084676_1-0.9784218934304049-0.021578106569595093 diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/extract_epik_pop_corrs.py b/fep_benchmark_inputs/fep_plus_inputs/merck/extract_epik_pop_corrs.py new file mode 100644 index 0000000000000000000000000000000000000000..cba1352d3a148810ced018ceb59d2174808f5974 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/extract_epik_pop_corrs.py @@ -0,0 +1,82 @@ +import numpy as np +from schrodinger.application.scisol.packages.fep.graph import Graph +import argparse +from collections import defaultdict + +epik_penalty_names = ('r_epik_Ionization_Penalty', + 'r_epik_Ionization_Penalty_Charging', + 'r_epik_Ionization_Penalty_Neutral', + 'r_epik_State_Penalty', + 'r_epik_Charging_Adjusted_Penalty', + 'i_epik_Tot_Q', + 'i_epik_Tot_abs_Q', + 'r_lp_tautomer_probability') + +def extract_supernodes(g): + smile2node = defaultdict(list) + for n in g.nodes_iter(): + if 'r_epik_Ionization_Penalty' in n.struc.property: + smile2node[n.canonical_smiles].append(n) + + smile2supernode = defaultdict(list) + for key in smile2node: + if len(smile2node[key]) > 1: + smile2supernode[key].extend(smile2node[key]) + + return smile2supernode + + +def get_ligname(node): + return node.short_id_title.split(':')[1].strip() + + +def write_popfile_from_epik(g, delimiter, outname, kT=0.596): + """ + Parse the epik ionization penalty for each ligand in the graph that has muliple protomers/tautomers and + write out the input for the pka_tautomer_correction.py script. + """ + # Find the supernodes in the graph: + smile2supernode = extract_supernodes(g) + lines = [] + for key in smile2supernode: + penalties = np.array([n.struc.property['r_epik_Ionization_Penalty'] for n in smile2supernode[key]]) + penalties -= penalties.min() # Ionization penalties already reflect normalized weights, but doing this for stability + populations = np.exp(-penalties / kT ) / np.sum(np.exp(-penalties / kT )) + pop_str = [str(p) for p in populations] + lignames = [get_ligname(n) for n in smile2supernode[key]] + + lines.append(delimiter.join(lignames) + delimiter + delimiter.join(pop_str)) + + with open(outname, 'w') as f: + f.writelines('\n'.join(lines)) + + +def main(argv=None): + usage=""" + Extract the Epik protomer/tautomer ionization state penalties and write out a population file for the pKa tautomer + correction script. + + $SCHRODINGER/run extract_epik_pop_corrs.py map_out.fmp -o epik_populations.txt + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an fmp whose ligands have epik state penalties as molecular properties.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="The name of the population file that will be produced, default=epik_populations.txt.", + default='epik_populations.txt') + parser.add_argument('-d', + dest='delimiter', + type=str, + help="The delimiter with which to space the text in the population file, default=-", + default='-') + args = parser.parse_args(argv) + + g = Graph.deserialize(args.infile) + write_popfile_from_epik(g, outname=args.outfile, delimiter=args.delimiter) + + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/hif2a_symbmcorr.py b/fep_benchmark_inputs/fep_plus_inputs/merck/hif2a_symbmcorr.py new file mode 100644 index 0000000000000000000000000000000000000000..16164f40c8934d21c39ce755c413b4da33d85f87 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/hif2a_symbmcorr.py @@ -0,0 +1,95 @@ +from schrodinger.application.scisol.packages.fep import graph +import numpy as np +import argparse +from itertools import combinations + +import sys +sys.path.append('../') +import binding_mode_correction as bmc + + +def get_lignames(edge): + sep = edge.short_id_title.split('==>') + lig1 = sep[0].split(':')[1].strip() + lig2 = sep[1].split(':')[1].strip() + return lig1, lig2 + + +# Add the symmetry corrections. Specific to the map +degree_of_symm = {'23':2, + '251':2, + '256':2, + '67':2} + +def get_error_before_corrs(g): + pred_dgs = [] + exp_dgs = [] + for n in g.nodes_iter(): + ligname = n.short_id_title.split(":")[1].strip() + if 'flip' not in ligname: + pred_dgs.append(n.pred_dg.val) + exp_dgs.append(n.exp_dg.val) + + pred_dgs = np.array(pred_dgs) + exp_dgs = np.array(exp_dgs) + + pred_dgs += np.mean(exp_dgs) - np.mean(pred_dgs) + + indices = np.arange(len(exp_dgs)) + pred_pairwise = np.array([pred_dgs[i] - pred_dgs[j] for i, j in combinations(indices, 2)]) + exp_pairwise = np.array([exp_dgs[i] - exp_dgs[j] for i, j in combinations(indices, 2)]) + + sq_diffs = (exp_pairwise - pred_pairwise)**2 + boot_rmsds = np.zeros(10000) + for b in range(10000): + samp_inds = np.random.choice(len(sq_diffs), len(sq_diffs)) + arr_boot = sq_diffs[samp_inds] + boot_rmsds[b] = np.sqrt(arr_boot.mean()) + + pair_rmsd = np.sqrt(np.mean((exp_pairwise - pred_pairwise)**2)) + print('Pairwise RMSD without extra rotamers and symmetry correction = {:.2f} +/- {:.2f} kcal/mol'.format(pair_rmsd, np.std(boot_rmsds))) + + +def main(argv=None): + usage=""" + Apply the symmetry and binding mode correction to a particular map. + + $SCHRODINGER/run symbmcorr.py map_out.fmp -o map_bmcorr_out.fmp + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="If entered, the name of the corrected map, default=None.", + default=None) + args = parser.parse_args(argv) + + g = graph.Graph.deserialize(args.infile) + + # SYMMETRY CORRECTION + kT =0.596 + for e in g.edges_iter(): + l1, l2 = get_lignames(e) + total_corr = 0 + # Symmetry correction + if l1 in degree_of_symm: + total_corr += kT * np.log(degree_of_symm[l1]) + if l2 in degree_of_symm: + total_corr -= kT * np.log(degree_of_symm[l2]) + e.complex_dg += total_corr + + g.calc_cycle_closure() + + # BINDING MODE CORRECTION + mode_nodes, corrections = bmc.correct_multiple_binding_modes(g) + bmc.merge_ligand_nodes(g, mode_nodes, corrections) + g.calc_cycle_closure() + + if args.outfile is not None: + g.write(args.outfile) + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/pfkfb3_symbmcorr.py b/fep_benchmark_inputs/fep_plus_inputs/merck/pfkfb3_symbmcorr.py new file mode 100644 index 0000000000000000000000000000000000000000..ee7dd68150f663b4d8ce620c09928daf6a6b858f --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/pfkfb3_symbmcorr.py @@ -0,0 +1,65 @@ +from schrodinger.application.scisol.packages.fep import graph +import numpy as np +import argparse + + +import sys +sys.path.append('../') +import binding_mode_correction as bmc + + +def get_lignames(edge): + sep = edge.short_id_title.split('==>') + lig1 = sep[0].split(':')[1].strip() + lig2 = sep[1].split(':')[1].strip() + return lig1, lig2 + + +# Add the symmetry corrections. Specific to the map +degree_of_symm = {'44':2, '46':2, '47':2, '48':2, '49':2} + + +def main(argv=None): + usage=""" + Apply the symmetry and binding mode correction to a particular map. + + $SCHRODINGER/run symbmcorr.py map_out.fmp -o map_bmcorr_out.fmp + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="If entered, the name of the corrected map, default=None.", + default=None) + args = parser.parse_args(argv) + + g = graph.Graph.deserialize(args.infile) + + # SYMMETRY CORRECTION + kT =0.596 + for e in g.edges_iter(): + if e.complex_dg is not None: + l1, l2 = get_lignames(e) + total_corr = 0 + # Symmetry correction + if l1 in degree_of_symm: + total_corr += kT * np.log(degree_of_symm[l1]) + if l2 in degree_of_symm: + total_corr -= kT * np.log(degree_of_symm[l2]) + e.complex_dg += total_corr + + g.calc_cycle_closure() + + # BINDING MODE CORRECTION + mode_nodes, corrections = bmc.correct_multiple_binding_modes(g) + bmc.merge_ligand_nodes(g, mode_nodes, corrections) + g.calc_cycle_closure() + + if args.outfile is not None: + g.write(args.outfile) + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/merck/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..ae7d3ef5ba095f57b2bde15ea4aaae49f9c5a18a --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/run_all_corrections.sh @@ -0,0 +1,6 @@ +$SCHRODINGER/run cdk8_symbmcorr.py cdk8_5cei_new_helix_loop_extra/cdk8_5cei_new_helix_loop_extra_out.fmp -o cdk8_5cei_new_helix_loop_extra/cdk8_symbmcorr_out.fmp +./run_eg5_corrections.sh +$SCHRODINGER/run hif2a_symbmcorr.py hif2a_automap/hif2a_automap_out.fmp -o hif2a_automap/hif2a_automap_symbmcorr_out.fmp +#$SCHRODINGER/run pfkfb3_symbmcorr.py pfkfb3_automap/pfkfb3_automap.fmp -o pfkfb3_automap/pfkfb3_automap_symbmcorr_out_fmp +./run_syk_corrs.sh +./run_tnks2_corrs.sh diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/run_eg5_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/merck/run_eg5_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..9feb75773721f01b7f8758c455b4bca85c9fe523 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/run_eg5_corrections.sh @@ -0,0 +1 @@ +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py eg5_extraprotomers/eg5_extraprotomers_out.fmp -o eg5_extraprotomers/eg5_extraprotomers_pkacorr_out.fmp -p eg5_populations_epik.txt -s- diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/run_syk_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/merck/run_syk_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..0b455dbb45ddff15a7c450b84e9cf12de8f9442e --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/run_syk_corrs.sh @@ -0,0 +1,2 @@ +$SCHRODINGER/run -FROM scisol binding_mode_correction.py syk_4puz_fullmap/syk_4puz_fullmap_out.fmp -o syk_4puz_fullmap/syk_bmcorr_out.fmp +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py syk_4puz_fullmap/syk_bmcorr_out.fmp -p syk_epik_pops.txt -s- -o syk_4puz_fullmap/syk_pkacorr_out.fmp diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/run_tnks2_corrs.sh b/fep_benchmark_inputs/fep_plus_inputs/merck/run_tnks2_corrs.sh new file mode 100755 index 0000000000000000000000000000000000000000..87a8cdaace0e26b9df986bbe241d141014aa9b07 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/run_tnks2_corrs.sh @@ -0,0 +1,4 @@ +# 1. Apply the symmetry correction to all ligands except 7. +$SCHRODINGER/run tnks2_symcorr.py tnks2_fullmap/tnks2_fullmap_out.fmp -o tnks2_fullmap/tnks2_symcorr_out.fmp +# 2. Apply the pKa correction +$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py tnks2_fullmap/tnks2_symcorr_out.fmp -pka-file tnks2_macropka.txt -o tnks2_fullmap/tnks2_symcorr_pkacorr_out.fmp -s _ diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/merck/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..131180c783e14c871e6364702b8f5e34622a73c3 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/setup_and_run.sh @@ -0,0 +1,9 @@ +PROTEINS=(cdk8_5cei_new_helix_loop_extra cmet eg5_extraprotomers hif2a_automap pfkfb3_automap shp2 syk_4puz_fullmap tnks2_fullmap) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/merck/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..0384486f135d01b7a5dfbc24e699cb343320466f --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938f98e529e1ff10516c8b94ea2cd970c4b2aebe981a1d9ba4922e15a1c1d620 +size 819 diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/syk_epik_pops.txt b/fep_benchmark_inputs/fep_plus_inputs/merck/syk_epik_pops.txt new file mode 100644 index 0000000000000000000000000000000000000000..e094fba0057a917104ae724418fd3e4257eaae45 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/syk_epik_pops.txt @@ -0,0 +1,2 @@ +redocked CHEMBL3265000 ground state-redocked CHEMBL3265000-0.992844680141203-0.0071553198587971075 +CHEMBL3265003 tautomer 1-CHEMBL3265003 tautomer 2-0.5-0.5 \ No newline at end of file diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/tnks2_macropka.txt b/fep_benchmark_inputs/fep_plus_inputs/merck/tnks2_macropka.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5b2fedad0819711fa538df675eddecd1da5d7d3 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/tnks2_macropka.txt @@ -0,0 +1,9 @@ +pH 7.7 + +# ligand ligand pka +8c neutral equitorial_8c adjust_10.457 +8d neutral equitorial_8d_10.447 +8f neutral_8f_9.396 +8e adjust neutral_8e_9.39 +8b neutral_8b_7.82 +8a neutral_8a_7.82 diff --git a/fep_benchmark_inputs/fep_plus_inputs/merck/tnks2_symcorr.py b/fep_benchmark_inputs/fep_plus_inputs/merck/tnks2_symcorr.py new file mode 100644 index 0000000000000000000000000000000000000000..6ccfbe21ca75360833e1db13ec6def732a0ebf93 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/merck/tnks2_symcorr.py @@ -0,0 +1,65 @@ +from schrodinger.application.scisol.packages.fep import graph +import numpy as np +import argparse + + +import sys +sys.path.append('../') +import binding_mode_correction as bmc + + +def get_lignames(edge): + sep = edge.short_id_title.split('==>') + lig1 = sep[0].split(':')[1].strip() + lig2 = sep[1].split(':')[1].strip() + return lig1, lig2 + + +def main(argv=None): + usage=""" + Apply the symmetry and binding mode correction to a particular map. + + $SCHRODINGER/run symbmcorr.py map_out.fmp -o map_bmcorr_out.fmp + """ + parser = argparse.ArgumentParser(usage=usage) + parser.add_argument('infile', + type=str, + help="The name of an out fmp file that contains multiple binding modes.") + parser.add_argument('-o', + dest='outfile', + type=str, + help="If entered, the name of the corrected map, default=None.", + default=None) + args = parser.parse_args(argv) + + g = graph.Graph.deserialize(args.infile) + + # Add the symmetry corrections. Specific to the map + degree_of_symm = {} + for n in g.nodes_iter(): + l = n.short_id_title.split(':')[1].strip() + if l != '7': + degree_of_symm[l] = 2 + else: + print('Ligand 7 does not need the correction.') + + + # SYMMETRY CORRECTION + kT =0.596 + for e in g.edges_iter(): + l1, l2 = get_lignames(e) + total_corr = 0 + # Symmetry correction + if l1 in degree_of_symm: + total_corr += kT * np.log(degree_of_symm[l1]) + if l2 in degree_of_symm: + total_corr -= kT * np.log(degree_of_symm[l2]) + e.complex_dg += total_corr + + g.calc_cycle_closure() + + if args.outfile is not None: + g.write(args.outfile) + +if __name__ == '__main__': + main() diff --git a/fep_benchmark_inputs/fep_plus_inputs/misc/galectin3_ffb_oplsdir/custom_2021_4.opls b/fep_benchmark_inputs/fep_plus_inputs/misc/galectin3_ffb_oplsdir/custom_2021_4.opls new file mode 100644 index 0000000000000000000000000000000000000000..04e83bfb46250450af72e633a55f0de8308137a2 Binary files /dev/null and b/fep_benchmark_inputs/fep_plus_inputs/misc/galectin3_ffb_oplsdir/custom_2021_4.opls differ diff --git a/fep_benchmark_inputs/fep_plus_inputs/misc/galectin3_ffb_oplsdir/custom_2022_3.opls b/fep_benchmark_inputs/fep_plus_inputs/misc/galectin3_ffb_oplsdir/custom_2022_3.opls new file mode 100644 index 0000000000000000000000000000000000000000..b1eda545dbd8daf00d0d05c5f4d6a41e9e23950b Binary files /dev/null and b/fep_benchmark_inputs/fep_plus_inputs/misc/galectin3_ffb_oplsdir/custom_2022_3.opls differ diff --git a/fep_benchmark_inputs/fep_plus_inputs/misc/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/misc/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..a5da7367340345e85b41bdd23eff0f45c2d9db2c --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/misc/run_all_corrections.sh @@ -0,0 +1 @@ +$SCHRODINGER/run -FROM scisol binding_mode_correction.py btk_extra_flip/btk_extra_flip_out.fmp -o btk_extra_flip/btk_extra_flip_bmcorr_out.fmp diff --git a/fep_benchmark_inputs/fep_plus_inputs/misc/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/misc/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..1329bf1edabde72e228252a5a17ff57c6f61e68d --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/misc/setup_and_run.sh @@ -0,0 +1,16 @@ +PROTEINS=(btk_extra_flip cdk8_koehler hfaah hiv_prot_ekegren) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + +# Error with forcefield builder in 22-3, so using a custom OPLSDIR: +mkdir galectin3_extra +cp -r galectin3_extra.fmp galectin3_ffb_oplsdir galectin3_extra +cd galectin3_extra +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -OPLSDIR galectin3_ffb_oplsdir -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME galectin3_extra galectin3_extra.fmp -QARG "-P dev_GPU" +cd ../ diff --git a/fep_benchmark_inputs/fep_plus_inputs/misc/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/misc/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..c9ec0b5be7a7ebffc0a9b0d7bf4453388e2ac174 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/misc/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6484802c91d882f8737db1c075ae4c9469a0b24666347ac4aeb5933ec6f78469 +size 532 diff --git a/fep_benchmark_inputs/fep_plus_inputs/opls_stress/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/opls_stress/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..d5e72b1dee443d44082c4062110beea1cb4d60b7 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/opls_stress/setup_and_run.sh @@ -0,0 +1,15 @@ +PROTEINS=(chk1_set1 chk1_set2 chk1_set3 chk1_set4 chk1_set5 chk1_set6 chk1_set7 cr_bace1 cr_bace2 fxa_set3 fxa_set4 fxa_set5 fxa_set6 hc_bace1 hc_bace2 pb_bace3) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + +mkdir fxa_yoshikawa_set +cp fxa_yoshikawa_set.fmp fxa_yoshikawa_set +cd fxa_yoshikawa_set +"${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -modify_dihe -ensemble muVT -seed 1 -JOBNAME fxa_yoshikawa_set fxa_yoshikawa_set.fmp -QARG "-P dev_GPU" +cd ../ diff --git a/fep_benchmark_inputs/fep_plus_inputs/opls_stress/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/opls_stress/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..99e47fdecbfdd73a26ec031af8e3d13aac30d8e8 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/opls_stress/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f723ee143625bb3cd75f10e5d35feeade14ad7f6c060e91c97fb8c76076d9f06 +size 1578 diff --git a/fep_benchmark_inputs/fep_plus_inputs/post_simulation_corrections.md b/fep_benchmark_inputs/fep_plus_inputs/post_simulation_corrections.md new file mode 100644 index 0000000000000000000000000000000000000000..1f67e703f1c559823702836cb3e84138235185dd --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/post_simulation_corrections.md @@ -0,0 +1,69 @@ +## Benchmark subsets with systems that have post simulation corrections +Here is a breakdown of the corrections applied to the maps. This can be applied automatically wtih `apply_all_corrections.sh`. + +Prior to the 22-3 release, pKa/tauotmer and binding mode corrections had to be run seperately from the command line and +custom scripts. The corrections outlined in this section are for releases 22-2 and earlier and can be streamlined for +more recent releases. + +FEP maps and directories that are _not_ listed below require no post processing. + +### `charge_annhil/` FEP+ charge-change +Every `fmp` file, except `thrombin_whole_map.fmp` requires a pKa correction. The solvent pKas can be found in the accompanying +`.txt` files. The are 2 sets of solvent pKas: manually chosen (`*_pka.txt`)or automatically entered with epiK +(`*_epikpka.txt`). These pKa files can be used as input to the `pka_tautomer_correction.py` script. + +### `fragments/` FEP+ fragements +There are 2 jak2 maps that require pka/tautomer corrections as well as binding mode corrections. These correction +scripts are: +* `run_jak2_set1_corrs.sh`, which uses `jak2_set1_pka.txt` as input. +* `run_jak2_set2_corrs.sh` + +### `gpcrs/` GPCRs +* A2A: pka, binding mode, and symmetry corrections can be run with `run_a2a_corrs.sh` which uses `a2a_epik_pka.txt` and +`a2a_symbmcorr.py`. +* The output 2 P2Y1 maps can be merged using: + - `$SCHRODINGER/run -FROM scisol merge_graph.py p2y1_meta_sub_out.fmp p2y1_ortho_sub_out.fmp -o p2y1_merged.fmp -sc` + + +### `jacs_set/` FEP+ R-group set +* The JNK1 output requires binding mode corrections: + - `$SCHRODINGER/run -FROM scisol binding_mode_correction.py jnk1_manual_flips_out.fmp -o jnk1_manual_flips_out_bmcorr_out.fmp` +* The MCL1 map also requires binding mode corrections: + - `$SCHRODINGER/run -FROM scisol binding_mode_correction.py mcl1_extra_flips_out.fmp -o mcl1_extra_flips_out_bmcorr_out.fmp` + + +### `janssen_bace/` Janssen BACE1 data sets +* One molecule from the retrospective set from Ciordai et al. requires a pKa correction for one molecule. This can be +run using `run_bace_ciordia_retro_corrs.sh` +* The P2 pocket subset from Keranen et al. requires binding mode corrections. These can be run using +`run_bace_keranen_p2_corrs.sh` + +### `mcs_docking` MCS docking sets +* The HNE map has some molecules with multiple protonation states. These can be corrected for using + - `$SCHRODINGER/run -FROM scisol pka_tautomer_correction.py hne_500mM_out.fmp -pka-file hne_epik_pka.txt -o hne_500mM_pkacorr_out.fmp` + +### `merck/` The public Merck data sets +* The CDK8 map requires symmetry and binding mode corrections. These can be implemented with `cdk8_symbmcorr.py` script +like so: + - `$SCHRODINGER/run cdk8_symbmcorr.py cdk8_5cei_new_helix_loop_extra_out.fmp -o cdk8_symbmcorr_out.fmp` +* The Eg5 map has multiple protomers that can be handled usig `run_eg5_corrections.sh`. +* Some ligands in the hif2-alpha map have 2 rotamer states whereas other require symmetry corrections. These can be +handled with the python script: + - `$SCHRODINGER/run hif2a_symbmcorr.py hif2a_automap_out.fmp -o hif2a_automap_symbmcorr.fmp` +* Most ligands in the PFKFB3 have multiple rotamers whereas some require a symmetry correction, which require the +application of the script: + - `$SCHRODINGER/run pfkfb3_symbmcorr.py pfkfb3_automap.fmp -o pfkfb3_automap_symbmcorr_out_fmp` +* Some ligands in the SYK map have different protomers, tautomers, and rotamers, which can be addressed using `run_syk_corrs.sh`. +* The TNKS2 requires correcting for multiple protomers and one symmetric rotamer state. These can be corrected using +` run_tnks2_corrs.sh`. + +### `misc/` Miscellaneous +* Some of the ligands in the BTK map have 2 rotamer states that have been added to the map. These can be accounted for +with + - `$SCHRODINGER/run binding_mode_correction.py btk_extra_flip_out.fmp -o btk_extra_flip_bmcorr_out.fmp` + +### `waterset/` FEP+ buried water set +* The scytalone dehydratase map has a bespoke pKa correction script that was written for the validation of the FEP+'s +GCMC method. The corrections can be applied using + - `$SCHRODINGER/run sd_analysis_tools.py -i scyt_dehyd_out.fmp -o scyt_dehyd_pkacorr_out.fmp -d macro` + diff --git a/fep_benchmark_inputs/fep_plus_inputs/scaffold_hopping/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/scaffold_hopping/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..9e6d9ee418cfdd13fccea98b361668d15eae84f3 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/scaffold_hopping/setup_and_run.sh @@ -0,0 +1,10 @@ +PROTEINS=(Bace1_4zsp CHK1_3u9n_corehop Era_2q70 Fxa_2ei8 TPSB2_3v7t) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:50 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done + diff --git a/fep_benchmark_inputs/fep_plus_inputs/scaffold_hopping/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/scaffold_hopping/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..c5e31fdbbb663a572bb54e01657ff703af8950f5 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/scaffold_hopping/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12df3ce9790a92edeed3a1bf1b2af4a98e16f92859588ed4fc6d8edf636f3cee +size 734 diff --git a/fep_benchmark_inputs/fep_plus_inputs/waterset/run_all_corrections.sh b/fep_benchmark_inputs/fep_plus_inputs/waterset/run_all_corrections.sh new file mode 100755 index 0000000000000000000000000000000000000000..5017de04b6f166ce5eb279f4ead759b75914f042 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/waterset/run_all_corrections.sh @@ -0,0 +1,2 @@ +$SCHRODINGER/run sd_analysis_tools.py -i scyt_dehyd/scyt_dehyd_out.fmp -o scyt_dehyd/scyt_dehyd_pkacorr_out.fmp -d macro +$SCHRODINGER/run -FROM scisol binding_mode_correction.py throm_nozob_hip75/throm_nozob_hip75_out.fmp -o throm_nozob_hip75/throm_nozob_hip75_bmcorr_out.fmp diff --git a/fep_benchmark_inputs/fep_plus_inputs/waterset/sd_analysis_tools.py b/fep_benchmark_inputs/fep_plus_inputs/waterset/sd_analysis_tools.py new file mode 100644 index 0000000000000000000000000000000000000000..0ac8bfe43008f0252af6c78555985c4cef66e0d1 --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/waterset/sd_analysis_tools.py @@ -0,0 +1,146 @@ +import numpy as np +from copy import deepcopy +from schrodinger.application.scisol.packages.fep import graph +from schrodinger.application.scisol.packages.fep import fep_stats +from schrodinger.application.desmond.measurement import Measurement +from itertools import combinations + + +from scipy.optimize import minimize + + +def selection_penaly(pka, ph=7., protonated=True): + """ + The free energy to select out the either the protonated or deprotonated state of a molecule in solvent. + + Note + ---- + The way to think about it is via the grand canonical ensemble. These penalties are the ratios of two grand canonical + partition functions where one state has been removed. + + Parameters + ---------- + ph = float + The pH of the solvent. + pka: float + The pKa of the protonated form. + protonated: bool + Whether to spit out the penalty to select either the protonated form, or deprotonated form. + """ + top = 10 ** (pka - ph) + if protonated: + return -0.596 * np.log(top / (1 + top)) + else: + return -0.596 * np.log(1 / (1 + top)) + + +def solvent_penalty(pka1, pka2, ph=7): + """ + Apply the relative free energy penalty to isoloate the neutral forms of two ligands. Used to for the + pKa correction of the SD map. + """ + top1 = 10 ** (pka1 - ph) + top2 = 10 ** (pka2 - ph) + return -0.596 * np.log((1 + top1) / (1 + top2)) + + +def apply_solvent_penalty(g_pka, pka_dict): + """ + Calculate the solvent pKa penalty for the ligands in an fmp map. + + Parameters + ---------- + g_pka: fmp map + The map whose entries will be changed in place to reflect the pka correction. + pka_dict: dict + The dictionary that stores (by ligand name) the macro pKas of the ligands. + """ + for e in g_pka.edges_iter(): + l1 = e.short_id_title.split('==>')[0].split(':')[1].strip() + l2 = e.short_id_title.split('==>')[1].split(':')[1].strip() + corr = solvent_penalty(pka_dict[l1], pka_dict[l2]) + unc = e.complex_dg.unc + val = e.complex_dg.val + e.complex_dg = Measurement(val + corr, unc) + g_pka.calc_cycle_closure() + +def pretty_print_fmp(g): + """ + Print the statistics from an fmp file + """ + results = fep_stats.calculate(g) + for item in results: + print(item, results[item]) + +import argparse +def get_arg_parser(): + # Setup a parser of the command-line arguments + parser = argparse.ArgumentParser(description="Program to automatically apply the pKa correction to the scytalone" + "dehydratase map.") + parser.add_argument('-i', '--infile', type=str, + help="the name of the scytalone out fmp file that.") + parser.add_argument('-o', '--outfile', type=str, + help="the name of the output fmp that has the pKa correction appied.") + parser.add_argument('-d', '--dict', type=str, choices=['macro', 'fitted'], + help="the type of pKa dictionary to use: 'macro' for the pKas predicted by macropka and 'fitted'" + " for the pKas that have been optimized to reduce pairwise RMSE, default=macro", default='macro') + parser.add_argument('--optimize', action='store_true', + help='Whether to minimize the pairwise RMSE by altering the pKas of 2d, 3d, 6d, and 8d.', default=False) + return parser + + +if __name__ == '__main__': + args = get_arg_parser().parse_args() + + # The prediction from macropKa on simplified versions of the ligands. + #PKA_DICT = {'2d': 6.33, '3d': 9.26, '4d': 5.45, '5d': 4.06, '6d': 7.09, '7d': 5.42, '8d': 7.13} + # 14th January 2019 + # ----------------- + # MacropKa predicts a value of 9.26 for compound 3d. However, there is good experimental evidence that the pKa of + # 3d is 8.0. So using that value for ligand 3d. + #PKA_DICT = {'2d': 6.33, '3d': 8.0, '4d': 5.45, '5d': 4.06, '6d': 7.09, '7d': 5.42, '8d': 7.13} + PKA_DICT = {'2d': 5.60, '3d': 8.89, '4d': 5.23, '5d': 4.06, '6d': 7.09, '7d': 3.61, '8d': 7.10} + # The result from optimizing the pKas of 2d, 3d, 6d and 8d to minimize the pairwise RMSE of the map. + OPT_PKA_DICT = {'2d': 6.11923504, '3d': 8.26555333, '4d': 5.45, '5d': 4.06, '6d': 8.0862216, '7d': 5.42, '8d': 7.62419523} + + # Read in the graph: + g = graph.Graph.deserialize(args.infile) + + if args.dict == 'macro': + pka_dict = PKA_DICT + elif args.dict == 'fitted': + pka_dict = OPT_PKA_DICT + else: + raise Exception('Unable to recognize the option for --dict. Please choose a valid option.') + + if args.optimize: + # Minimize the pKas from the starting dict subject to the constraint that they can be no more than 1 log unit away from their starting value. + X0 = np.array((pka_dict['2d'], pka_dict['6d'], pka_dict['8d'])) + def pairwise_error_constraint(pkas): + """ + Defining the function that will be minimized. + """ + if np.any(np.abs(X0 - pkas) > 1): + return np.inf + else: + g_pka_corr = deepcopy(g) + pka_dict_mod = {'2d': pkas[0], '3d': 8.0, '4d': 5.45, '5d': 4.06, '6d': pkas[1], '7d': 5.42, '8d': pkas[2]} + apply_solvent_penalty(g_pka_corr, pka_dict_mod) + r = fep_stats.calculate(g_pka_corr) + return r['RMSE Edgewise'].val + + print('\nOptimizing pKas of 2d, 6d and 8d to minimize the edgewise RMSE...') + result = minimize(fun=pairwise_error_constraint, x0=X0, method='Nelder-Mead', options={'maxiter': 100}) + pka_dict['2d'] = result.x[0] + pka_dict['6d'] = result.x[1] + pka_dict['8d'] = result.x[2] + print('... Optimization compled.') + print('Fitted values are:') + print(pka_dict) + + # Apply the pKa correction: + g_pka_corr = deepcopy(g) + apply_solvent_penalty(g_pka_corr, pka_dict) + #print('\nNew results:') + #pretty_print_fmp(g_pka_corr) + g_pka_corr.write(args.outfile) diff --git a/fep_benchmark_inputs/fep_plus_inputs/waterset/setup_and_run.sh b/fep_benchmark_inputs/fep_plus_inputs/waterset/setup_and_run.sh new file mode 100755 index 0000000000000000000000000000000000000000..01b61afb6eda2844522d2bacb1a2be783d2b822e --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/waterset/setup_and_run.sh @@ -0,0 +1,9 @@ +PROTEINS=(hsp90_kung brd41_ASH106 taf12 scyt_dehyd chk1 throm_nozob_hip75 urokinase hsp90_woodhead) +for P in ${PROTEINS[*]} +do + mkdir "${P}" + cp ${P}.fmp ${P} + cd "${P}" + "${SCHRODINGER}/fep_plus" -HOST bolt_cpu -SUBHOST bolt_gpu -ppj 2 -ffbuilder -ff-host bolt_cpu:30 -time 20000.0 -vacuum -ensemble muVT -seed 1 -JOBNAME ${P} ${P}.fmp -QARG "-P dev_GPU" + cd ../ +done diff --git a/fep_benchmark_inputs/fep_plus_inputs/waterset/subset_metadata.csv b/fep_benchmark_inputs/fep_plus_inputs/waterset/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8e90e1abf50e980173212316f7f6181ad6422bf --- /dev/null +++ b/fep_benchmark_inputs/fep_plus_inputs/waterset/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3416e1dec300d7aabd7c3581530be27548b1029a9c76ff0430714241199e84b +size 839 diff --git a/fep_benchmark_inputs/structure_inputs/README.md b/fep_benchmark_inputs/structure_inputs/README.md new file mode 100644 index 0000000000000000000000000000000000000000..cac09bcf8d4d14687835ec7aefcc600ff0d3da0f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/README.md @@ -0,0 +1,30 @@ +# Benchmark structural inputs +The protein and ligand structures of the benchmark. In total, there are 103 protein structures +associated ligand binding poses that have been seperated in 14 sub-directories that indicate the were the input data was +adapted from. + +## Subset directories +The names of each directory and the corresponding subset title in the [accompanying manuscript](https://doi.org/10.26434/chemrxiv-2022-p2vpg). + +* `bayer_macrocycles/`: Bayer Macrocycles +* `charge_annhil/`: FEP+ charge change set +* `fragments/`: FEP+ fragment data set +* `gpcrs/`: GPCRs +* `jacs_set/`: FEP+ R-group set +* `janssen_bace/`: Janssen BACE1 data sets +* `macrocycles/`: FEP+ macrocycles +* `mcs_docking/`: MCS docking sets +* `merck/`: The public Merck data set +* `misc/`: Miscellaneous data sets +* `opls_stress/`: OPLS stress set +* `scaffold_hoping/`: FEP+ scaffold hopping +* `waterset/`: FEP+ buried water set + +### Subset directory contents +Each directory contains +* `subset_metadata.csv`. Metadata on each subsystem, the file naming scheme and the PDB each model was based on. +* `*_ligands.sdf` The ligands along with additional rotomers and protomer/tautomer states. Each ligand is tagged with the +experimental binding free energy (in kcal/mol). +* `*_protien.pdb` The target structure. +* `*_edges.csv` The edges of the perturbation graph along with experimental relative binding free energy. + diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_edges.csv b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..bf3a5f90e149d818da31df5003be29a0b1f980cd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb9fb98d62ca5a2743b09212533d4e0cd669bc31bc0dd622a1536c9708a2915b +size 441 diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_ligands.sdf b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..c7e81709e057ea97be5b2f9786882cd569405b0b --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2afdc14fff4ecd6d197a9bfddad928cce5ea9581b475fc2baca45ac89844230 +size 20789 diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_protein.pdb b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..12bd57d0067beadc8b514c66ad86b42099491e41 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/ftase_extraligs_custcore_stereo_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:580c559cede9b1d26c546cb1ab07f5e5f67f22da47f189afa500d3b60107133e +size 1106402 diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f0539d24222cb913fc2a13a750817e4af792c3d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35be65c292d93a73caf0b697469c10be5ef8f49fa8f04bbc72701090ade620c +size 335 diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_edges.csv b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..e67133ef70100205154d01a014bdfb713657d31a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2c6b58e2c0a6fc377745b4e591e5ad7787facd650de3ebbc427e6438877425 +size 114 diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_ligands.sdf b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..0c1eeade2260bee6f39f0e2ed1dc74d339ca9929 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6021f1e76dd9ff2729e59c8d92d4dec245cf1b7e4cc5390ed8459e0a5b86ad80 +size 11228 diff --git a/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_protein.pdb b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..dc65b113fd40b0e01240e5dd03a9ba3998280465 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/bayer_macrocycles/wagner_brd4_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981feb730c030b61345419e9eab8edea16f8cff03cc11ede0e03100ce64ff7ff +size 171519 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..60d959d6e6286f49f5a5d9316a8483e075988297 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432eaf3fb538a77e47a5923623f84fab4d9ccecd4196196b212df8c6ae703768 +size 197 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..0050e6af9b1a4040296c255597fea4ee65ef687f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1246ef55accb5e1e71b657ae600d7c7a2666ebacd67da18acbae0205cb092c59 +size 14244 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..83b103f109563d22ede6faa16357ed80bc8e1372 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee51359c3e2851df4c4776aa24311764fbf7d07822a3243046c0c7929afae0ec +size 748001 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..857f3dbacc20b025c65364dffada1788fd6ed10f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8baf4978e9aa19fbcaac558286173ecf6931f2daf6d15fcfb5904180d5d8d106 +size 252 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..4b37e5a5663f1cf2599ee2de48ae964dac54b3d2 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cacd89e97df16cbf9c38949964253c9e2f3a19778376da59cbc7879ad700a334 +size 25819 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..3a4e6386ae946b2e49fd3710a33a14a4285c2ff8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/dlk_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eab7e772885dcc8a4537c95d53ef23000cee0076fd69c33ec5bd060d98d916c +size 371138 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..52daa1a2c9a366dfdd4e3779faf5bf784ee4126a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0534ec7b729fcc4b6933358d06190a873587813d111b8520de3fcec91ec463ab +size 406 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..f36905102e0f623cc745c750b7a17d30b41334f3 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65a974c4a2bba7e16f52fbef88e4a74358be6b9f05b541bc0f5f9cb830f03fd8 +size 80576 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..7379401760f0199007c06b52392c99481baa2a72 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/egfr_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768821c3984f5af7f236075ba4ca6a0d756a59ef863e1dec93f3809a6761bf24 +size 352604 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..58e62c1ceb21cc228ead22c10da9945b07c3d167 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d43d51b70a4222c30b20ce27df5ea841c82b072c9119a8edf9a8610ce03991 +size 234 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..62d300ab85ae21b9f9b2160799ed56de1283c8eb --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f79a389c1d34fb331c99c024b6a81ea983de98b2ab36721af1844e64ad5867 +size 18655 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..1526a908efb5cea16ead866539f7e50b40b43344 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/ephx2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270516a8f5a460a82589aebd3ae239fdd87b34c0c0fc63413a8f05b646d2355e +size 404938 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..95c1bc3f9f313679b2fe005c0bfa38c7030d6268 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0210c57d95c1a1b223cb49247d1b478736dd004df777e5385a3dc29d4e186bef +size 331 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..c7791d1f93b786403ab3256b6b21ef06bbe97f62 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:763b4f3286b146b5d9d6c9606c7e58b5c1e68da8af55a9bca1050545676034fe +size 30480 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..89d8fbc075761054f53e4b869422ff114d1585ad --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51c2145417146a7fcfeef4a790a6cf83b4543a38c7841076da95183e0037aac +size 378565 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..af81ad5302d2c140ff78aeb31abd7102ed05d3dd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b06f6748dfe63a9e058adb827ce3c542104f6127730410f7235863b260dc2331 +size 380 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b4ab39d1981c0b41d8cf19b5fc902a335cb809dd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3e69c2dc2de79d656adcb821ef3f3f87eeec3b443aea9ec2a4b29fa2550015c +size 24047 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..348b0da428851afa7ea4ff0f90061929fff279ce --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/irak4_s3_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0819ea1ca67985e9233809d5902aa0fc24095d520060d1c5ee1450ea5fb67c8c +size 377674 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..759eec36dbf5a133d90ff6917d8901199229d9ca --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a052df2a9a62267e19af6fd8198db3a974b4a36103db23d6fd395d573da6cbe +size 228 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..6e36394dd6793812287af708ad5a9b6b22a74005 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71d4bd43cccf45e1c3f38e36996f04fe264f5cc09707af3df49107214a05e73b +size 23039 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b089f5284c9e2bda841fddbbcfaadd589b05b7fe --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/itk_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaa305c7eb07eba7f9ec5ef62928856ff23d2340c3857d431528ff12ceaa20bf +size 546778 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..78b5f8cf45b15eba79374e31cd44d80eb1ebf93c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24a872776239c0bde67517b58f81f18575a2ee94be1e8cc827fb49d02752fa3 +size 359 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..be31a366b887f67d1b617829c7e2e97b4f5126f2 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a07a8505b4f9acbad901b5ec31c30658d26c64e95460080d1fe76d2a1f26bcb0 +size 24601 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..92fe73b105c571ec28bf4745d516c79c37f79937 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/jak1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45deb184df6b4973dfd3969199a3aff5c48c45fea0a75d00c5098d1ac0c2999e +size 425193 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..ee31a6925f025d74add72114ef3b8a8a4dfeba8e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68e6ff1e6c233b7712ed96e9b3b4f73e69fd53a4df67a7626aa50efb5fde06cb +size 276 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..a56268121f1d9a9f4cbadd09c9fe5d38aff5a98c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f64b6b47867b09f1e180f1673547b9693b21b4ca1705dc9cbd2a528f79229d +size 12185 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..245462a31298a4d4dd635e019054d9e7384d7b1a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/jnk1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38c14eacdc0d9af7a7feb53edb5cdcdf8c91a0a91351c88ce4bb2b33a28801e +size 538468 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..13e2afab94593497790cff095d62d3c5b277e337 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf94901d258ce7531a235fe106c9e1d5b7c1f7453f2cb0be0aae591a68f8da2 +size 166 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..4ca5545f5d7bad73df2c05cc71cb12822d0d73ae --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8c5a2bfc3aec215bfc0a7fc31738a0584b1ffdfad15351c650c75dbe84971c +size 14850 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..a9ed25b838ea4e417a6bef5ed74ea6406283369e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e712a1790f44b9167cfb37759e10d4f1a35bd283ec0cdfd8cec0b4bc9efc23 +size 425030 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..7d919e445520f0d96a7c442fbb993e6d9c3bfb57 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366d46ca0a92d6c91ca1182571cfe156d4c8c4a2024fb78f49fe7e2bbdf02442 +size 1072 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..7f77a58a7a0e562e714d53c91f9fb32cea2eba50 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6487a99b150ab521e1d8614d0550a50776e2ec74ab96139b5172ac673080b9de +size 274 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..beeba3d4375a336da9a5aa0d7e05b014d9200775 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bf9b916c5b0753a3b0d5c41915e537a486a8a9dd22d148810e766e2066f889 +size 23976 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..bb59bb578983bc561a4a834ce54113c134ccdc2b --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/thrombin_whole_map_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b039494759b6b97d8c73b25166f64b839bebe7896bbe59f827011677fa8fe1f +size 701818 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_edges.csv b/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..4076964f127f97ed6cb8a6a9cc0b2ea494e8d2b8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62e4da17b63f36adaec128f92fdd217f30ecd3891dd07d7e1f0bea2a109ec592 +size 435 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..de631458b9a1ccf7286045862852f32bc72bdf7f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8665d4f09d0d01a3bf9e34f1b39f738ef862c531e17aab35313194ff1367141f +size 20324 diff --git a/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_protein.pdb b/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..64f5785eaeedf155a0d918f17544a4ffd71c892c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/charge_annhil/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:353d470445e62745eed562c2306e57b1f8c35eb06a2eb16367fa3223566e2f97 +size 543411 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..c53ec9f22a449eb9369b80794e37ee1b3cf24668 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d5e70f9535e740aba41121d03ba65892618bddb2855d434e881bd95ec3347eb +size 372 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5493cdd5d2cc7ebbbdb6e7357d9f5d25f23e305d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cb2acca5cbec64ed3875df2559ca424ea500b6a275436c38742cb30d8cbe895 +size 19827 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b19cafe9ceee1ca492afda332aa6036d6ed5a117 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_liga_auto_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3953153f1df4dd43ba8a4e15fa75dab8a8d6d86e250d4cf516404c8cf0546bea +size 487929 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..75d316b4578474549e7b910ee982ba1f9f43f9a8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78e7afa95a4d47b9fa4f0d0d6438973176b90baa5a900b3b688d9b2df899ae9 +size 434 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..d1d289cdbf077843ad53001f4e79cf9606417507 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3115f6b1109f62fbd969d0afb91bf4e8046e3b3598b6e43df0401f13b63409a +size 19714 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..85cbc4686fe5222d47322c1d2755d7806f7c474e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_mcl1_noweak_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ee1f87cba56818609a9cf1c138f3870da98898cd454dce170aa2402a81e53f3 +size 196482 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..bd2eeb7093dcc28b85354af4e9ed8df9c5833b5b --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:406038aadaf6767fdf2d018b8c5de9f9bc3f9eab872c87e424062c6420c21b3b +size 292 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..2ce4ca39e369d8fdef0a512a6a7b37cf54e441b3 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcab3485b8a2db22e35552ece79f85002617221e2a0f77312471a7d417d6df70 +size 10325 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..13b04092c4451f06e4264c5cb5dd706e7c4388bd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_mup1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec24ea0424492f12acae353b6ce40c6e672b07fa5d4568977ba6b30dfd47bee2 +size 200774 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..5578a608211d0b169f1d7d085954eac67ff12490 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8999e32f71d97c5ee4a001a390066debea51a249f74ba6860f388acec95f1ccb +size 281 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..763e33619cdb5f89a2b411afab79ec78d49ff571 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6e7c1caf9efc0e6de4f3f06ca7dea90aab27be407425c3538c20ffca09c6dd +size 14091 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..422bd050ba34983c3b0c8a1ecbeea6de75c79eb7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/frag_p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67a9a5f8a9f6b07900a4728242f4743b44a3f0edc3842cdcedb468ebc6080974 +size 597906 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..f8486fe151f06643f6801341f81cebebcdcc97b9 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c545c68ba45fb635c18218f9e3142d958f82f8c0aa1e5da3320129401c5704d +size 239 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..c2754e9e3f9e9ea0469fc37c00ee3b932c450195 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67bcfb34a844093f7c00f60acc3c3dbe2c1ae128e1e437b77607649478dca8eb +size 20263 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6c8f3d16be13c7a493fc4841c6ddda61f03f7b03 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_2rings_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccb0d5ba4739b51912a573c883fd58f992b7a5e16eea6c27559264e6be10c4d +size 316423 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..ffade3cb464368f4bc4c4e273db71c6e3d89e026 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0178b97cb8c52ca98e3b49895651b3f26ae609cbbe86cf1aec0bc12a8de5a496 +size 215 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..52943ac6083e7d952fd6101b69de7b616c4091c5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd2c871c46f539117d71ad1c147ce7cd5faedec76cebc49c55dc07c167574d6 +size 17609 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6c8f3d16be13c7a493fc4841c6ddda61f03f7b03 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/hsp90_frag_single_ring_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccb0d5ba4739b51912a573c883fd58f992b7a5e16eea6c27559264e6be10c4d +size 316423 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..357878e61e89bd8f5c1f44d51d7c9a1568d83640 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632245100f29b85e9dfea907f1d68048713ff3e57b8eadf97d7b4c8ad396ad86 +size 443 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..1826f7d52f2741337a8de596fa2602a6e2177912 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e0d1c784515aaba8472091a7085ed0a2b547d1cc0d248d088c80739204d420 +size 23995 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..a81651bfa4f6242ca653d803576bf2cffc0130c1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c4788debaafd8901d475b58d73e895aec654ee53e37d7faba1aeefc72af7947 +size 475575 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..9205a5d17fea5a5392b0d0c5e201824cc557e547 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412cd33c01bc9e4416246fcc6f78692669b33b2454d81f78e2d61c12cd828cd7 +size 434 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..feae59426a598e0168a360e9813ecf3affc81d7f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7cd53504904a51b13a1baa76d03e8c8f6abfc3bf275ce91136651059094dbcb +size 29264 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b2ebb51980cb0578a6557fb5fbba7e690df047b0 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/jak2_set2_extra_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643646dcc4c55acc504b76513b804af9816616975452aa32e0471d48aaa18573 +size 495103 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/fragments/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..1db03cd2f313843d8111d6bac486bab7fb3527c0 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53f0c1b87248e0a7896f0e6f79577f696d027fd186aab6eb5165cb638c329bd7 +size 908 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_edges.csv b/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..63a9fe488daa5720003e0cb6113f53cbca825c32 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34a481e7226059bbc2a19d0c748d07f61ccd9d3d2c981017f4295224fae3ac8 +size 1012 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_ligands.sdf b/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..9b04e5acd7152ab988cd9319f82ddcb0a668fd50 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9eda8deeb2232d4551afa9db919cde51a4d68a5e4a4bcd74cc3e618281bd370 +size 18054 diff --git a/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_protein.pdb b/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5ab9bc5bf9f047d0ceac3097dedae01377799f6a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/fragments/t4lysozyme_uvt_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc020b8fb2f05d55cfe8486dbf6aec351f9b581570dcde0402ea38c061654c3e +size 211148 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_edges.csv b/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..4db308a4e6d5f2b88f6c1c7066424e06f88a39f4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ebed841c993aac261669049e9be9b643c2a286ec8c025e07b4b6f4cad96f9c +size 1200 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_ligands.sdf b/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5a2f8f1992db5de6aebb25212a932c58708b609a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f9b16d6fac563fcab4d9bff604e67a826bb9fc28a378a8752ed8b508cca15b +size 73544 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_protein.pdb b/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..146e7d3a0051438b097e0ed4def30d46a65ff7b8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/a2a_hip278_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d70c683cf304f7ff858d10825898a7f697308723705f89dcd503c4318266a756 +size 376153 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_edges.csv b/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..f3bb201a85eeaf8eb0e381e26bd8576e9b9094b5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97d522cf81bec74b237be47172961f0b699e165ce68d932970a0fecb9a08e5ef +size 4043 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_ligands.sdf b/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..cd2facdf70fc0b37b7f7651517298329cd474485 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2bfa102eeefffbb5914613b57a43eab867c7237e2dda8c61211054185f96a6d +size 205761 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_protein.pdb b/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..dcc4f621d7b3db64a296403e9c0d5d63eb01eb4f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/ox2_hip_custcore_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:143ad6936d1562103fa033418168ad229ad9467a56cdb1fbd624647ab2928ed3 +size 394207 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_edges.csv b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..33b29ee15f9a4ecec08df191fb579618e7be9d4d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc36c8cf4c8063ca834780695429da9abf3c3fb936e4efb9fbe71b053999a89 +size 1293 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_ligands.sdf b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..e78d9da9b65ed18c34e0b601fbbe2b2a2975742e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ea631695ef6f057e5db9917f27571fa238bd85b5d15665f8fc2a5a3f304144d +size 66316 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_protein.pdb b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..85eadac1e9792651c92a6026372bad2efbf7baa1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_meta_sub_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1926995cd5e72e089234d744ae9bdcd858d8c0941e810b0a768fdc421a3fbb +size 392621 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_edges.csv b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..4318ac9759a1ef3dfd92c399ca1c64f596e78a97 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f489d4532288b4068f30dded2ec16e589f7808fb9078be17ae8635b8c7cd76 +size 753 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_ligands.sdf b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..d1730eaf52e61ab3c1121dee9fd3e3e2feba9962 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2101dc2b849e40430e827dee7ead29995fc18fbe3dd5d83432685c2a14afebdf +size 45022 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_protein.pdb b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..33cfdbb93bb2628e080682774c4837d46745d60a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/p2y1_ortho_sub_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd81e9609926287f9e6b6f6d857a8183997c591ef8128305ec877a8f5e262716 +size 392621 diff --git a/fep_benchmark_inputs/structure_inputs/gpcrs/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/gpcrs/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7c1e0e990233d339b6c2af10884b791257d1666 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/gpcrs/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9313a9f142f12eea9556462a94c83da9d1f9c7bc9f229471490419255f8ab5e5 +size 419 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/bace_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/bace_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..0beb884014d36cafc0d7a92eeaff0405b8cb63bb --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/bace_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d71bf94a9f6a082cc6c4ea01727766291d292fb24ecf9c84e75aee08f1a14365 +size 2011 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/bace_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/bace_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..9ea90712c4e15206f9d5b1eaccfe4c889a7f5bd9 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/bace_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b57bb2f14d8c603100c4ba6227ef3dff6c30225244ebc4cf9a3e262e79b30fd3 +size 123153 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/bace_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5c98adbdd23ffba8282a7d8b0c42ef2f6d05a1ab --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafd54c9c8b7b2e5e3f107dac55bd391ebb3bdbff3f13b636088bf48cb215725 +size 713509 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..95066eb8e56d45f94b514182d015836b8cb63187 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c02e7eb8ec893059017aba9e3d35e320c5de4f81f4ee2a86978c0ba07e4cdd93 +size 674 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..e42cc4e50d4ec5ac056ff498d1518e5e0b7b00d7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f3e239c52531d34405162cf6f68b5bc6de864fee7e73b27bf9b9887b48e040 +size 59016 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f4da6136ad1d9da7a150a5e88bf4eb81f7fef090 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55be5cb91426420f7e55f0d4ba0dd6187130ba93378f7c7b542481e94f0ab23c +size 808728 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..6acd37939b82f18f84c6267637a4c6185e70728c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d63a91af2b1437acb32e9b62f53efd97fbbcaee919ef905d42a61accaec260 +size 2167 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..3d09c0991fbe080964d3e181c9a47eb2aa652933 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880876d2494cc6f9d5851273e74935e7caa16c8892eeb4e4ceac444eae22a677 +size 126854 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..70b3e4ea95c878f62c0b9324dc99e1de702e5f58 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f374dfc9284cf1a7c132ccf4129d4b5c47687e9b8b90202a06ba5e68ea4c60 +size 538484 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..b0a6c6a086a789fc4ce9c4b479fe76f12a95376e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8d0fb9c0bd17772431c50c3066a74c26c759ac2aad21487316ac6c97761b886 +size 4032 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..d0af9e1aa622eb5a50b17005838739b8ce098f8f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdef5551f313ab9f304af77b33ead5577d1ecdd1e37d8544739e95cec2345ea4 +size 226856 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..65498f473b18fa5c072ed7627f17677a503e0bf8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb554a086b5ad1371d806c42c26ebe5aa3b4a53c49dd87662444a5de0049f888 +size 207856 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/p38_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/p38_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..a0e26d640d792710f3c99f4e291219bfe8af197a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/p38_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed33101d71153e1485b221028baa224a66d13afa711c0ac784546625bc133a26 +size 1507 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/p38_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/p38_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..77abac54bf2708da186dbf238a281d1c1a83c5a1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/p38_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db90aa5812f46b9a73e7f2e71d0bb44b7c23d830a3a40dfca3f12a31bff0ea58 +size 122434 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/p38_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..edd2d5b021fab5558c4fbb0e295571e63fd77f8f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f8cec9dd6ae8879ff260b4ce100a69138f2edc64c9ee47b089269908244b3b8 +size 559852 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb3f33f4c50f19dbbe6e40af0e8a590cb1b92036 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a64ecd7ffbdeea683f68be910e150bf5ad5f3bf4ccb5380fc21cd3042546cfd +size 1488 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..527472eef7eb94c65300d263681564d0cf9c6f18 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cb9a4537fcbc3041dfc1605b990b1968854f22b4ff1e1d9c1c833f06db632b +size 80533 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..02bfb9577856384d9f894aeb3cd334d4e147796d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987a6c09ac6b8d9b2a1e8d298a904d9cd51eb5690c8f254f8c2efa2b92a41d9f +size 457286 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..77a0f47d844e2c3a54a42a96d820f67271145bb5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:512de45d69255c67939d04439d00582c827e2d195a112abc52eb304ad29de8ed +size 731 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..710cd59ce8f607d3df7c11f37ac4a38697531493 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f38245dbb02f89674f7128038ae70e0e79fc1eab4586924c7a4b90a591ea5f73 +size 386 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..1de90b5f74b8e33b6b98983cbd24c94027a8e430 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:987fa996ab6df3be0402460c35b860793560b332ba55ac90f05e92571592c9ca +size 43880 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..a7d103f78d1ff3fdb23f543a0bf4fd3b337fd4df --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5f3602212eaca6cc30a078f6057cfc412428e289e981a00e76ebec369a1105 +size 435378 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_edges.csv b/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..8c346642f6fb358046fe6675e7fda358cde289ca --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:542018dc54788b7a560c2fdbaa9dde6863b67790e6657d5936cf656fa559f201 +size 831 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5870d3eb69eb6be5de84875c05079cf8eea71059 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc5b64c524cc70b70a0075d68d9ea65a4a32e0e50fb88bd9f6678466b6b8a0b +size 44572 diff --git a/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_protein.pdb b/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..98629a0a207e07e3e0ef490073b5aec4964b5093 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f74bbee93e858b1af628edb4620ec12061f51dc0f93850346c68d0626f6a52 +size 543411 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_edges.csv b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..536c65a41020bae9be5971c82ccc61a066479c78 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e44dad9aacdbe7c5712168b33d5faaaa9e9be723d6aa2612111f0807ad213ab +size 439 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_ligands.sdf b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..1677f74768ce644f4f4324071c8a8442111300bf --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99ce2e1d99b7fe28f434dc6c71409f9efee3a7cffbf8f679d921ab153b741e36 +size 28960 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_protein.pdb b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f53624182418300e36142b00d0148e21155f110c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_prospective_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6d549b9357f5e5b96f5aa34066c0c7f112ca752129c4956e51b013a31c9f71 +size 599257 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_edges.csv b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..81e7b16e174be032d98e3cc605db9c8d054b12c0 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b0edd6bb4c1b1451e2732dda4aa0c1c69037717067ac4489b3818110d77046 +size 1595 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_ligands.sdf b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5d6e5e4035d3b7c1cd4807c4489c83c4030d7b7d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d6218efac5733437203a9ec940faa70838b0d0a3069e9b9a2e64abe57873a8 +size 120846 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_protein.pdb b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f53624182418300e36142b00d0148e21155f110c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_ciordia_retro_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6d549b9357f5e5b96f5aa34066c0c7f112ca752129c4956e51b013a31c9f71 +size 599257 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_edges.csv b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..b73b836c2c63eb71be74fab57811adfbacd7d898 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f89fd79c2196071c1ff807dafb9991598c6011af97c73d54ad3135181b89ed0 +size 666 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..13c7ba65c015476004c2286f77df39b3b9fcdf43 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f9f6c1853de5fb64516d0c74dc335c1024afc2a895311c8708bffe5f2e28181 +size 72630 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_protein.pdb b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..da18dbccab2424f72a6acf00ad1dcbdc13f74c00 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_keranen_p2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d9d673b86d4fc3ba50b6fc252ba07b1cd21e2d65d3af9811776302413dfc78 +size 510611 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_edges.csv b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..551d5e603327d17eaaa3cd221e4ca07629219a2f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4139a0217f63bdd5a18a4721bca60f337d3bbfde57b31007855a3d99e28278d +size 993 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_ligands.sdf b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..61a6e0e778164a262373b68dd44ad7964645eb2c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e44d73cdaf4e2416e757be4a70363c4b470423217fdbe904239bf200078d3bf0 +size 76933 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_protein.pdb b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6bd4af084d32df69e9f303347143ba1f09be05c9 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/bace_p3_arg368_in_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd8c63553c3a66cd7403f850b53a8d621f08095d352b2bdd10819ad1e956545 +size 575164 diff --git a/fep_benchmark_inputs/structure_inputs/janssen_bace/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/janssen_bace/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..3c48ced8cbfb9eeac40eb61dcaab155cee46fd18 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/janssen_bace/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9b2be5e275f8f72a052ccca2c1cd04159669ee99059abf21b926933b7063921 +size 505 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..45b14c4cecc421ad406fc26fdb4b1917563b340b --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:554cdcb53509f711f261ae32eebc6c4ea0fb6c78e3ba968243991d8a4f233064 +size 60 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b428ef8ab3b4429d7b10b137ee6a72e671eb3d17 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f6e959903c73e019a81bb5c4883492fa621becc8839e31aab33771e2ed67e11 +size 8417 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..0bdeb03e4a5668ff80c648373c8dc8c1d44e023c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2B8V_lig24and25_alpha05_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b43071fc1dc057151ee06ee634ae67e51f3315f6c67ad78fab04e34271ff0aa3 +size 536457 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..8c685133879bcc9bb3f918d3d886ab36b9da0342 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c24cb9d99915843b035befb7a9e63c16435e82586301a6f40f01ea113731478 +size 223 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5b01da53634e25c6fbfcb214241f81daef94e4ed --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48192576b89d95a563ed7902ade19d17575302432c2390296320cc4baa7dc65c +size 12537 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b96e41b490cedeaa6e47d1457ccd0e960b026d16 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2E9P_lig4to7_alpha05_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1801a219a9f37d27dbd6502f6cda0ce12181f2e13af411efdcbd49a4bd291116 +size 392176 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..43ecbd7ec19676a2792819a1be3d3f59810dabf0 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bec0ed05f068c020731380b6533e8b819a03686023605e95bfa88b17787650ec +size 360 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..a20d52f5e1d5318b827404768822c8146c0a90b9 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4891b9fc932070d1ef724c36a8e64f96316250e8bb7bf6cdd2a3fe18f06e9673 +size 35294 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..767a179dc0e6339e682e992a8f966dd0227644a0 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/2Q15_lig17to21_alpha05_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c830f0e27ab82efa0476b3a479c4cfd154b2f5e6924e811fd3842fe913b19e3 +size 484104 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..78dcb6d48191d848d4252ed4e39ab37392407808 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4cee0eb4e7c02f080d058937dea81d5a1a6071d6669cd615ee2fa57c30785d +size 386 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..05f905de50d3666f49f74987d28cac5fdc0a8772 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0ebe6b01662770dcd8330d9f867513af92b3e9b4042b041c21f5c81ac81ded +size 35640 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fba0f052fece58f25cfaa6a1f7ad39e6addb3fc5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/3RKZ_lig62to70_alpha05_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:583a606e7f0edac185bb78763a0d353041274b1a0ebbb2ec54e61b6f7c9e8b25 +size 269553 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..847fd3e9a6094030aeb30fa47e3f44a1a518c846 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa65d846ed33aab914eb95a61e483da5453b29f0c684861c99f095d59fb86ba2 +size 156 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..157ff1094b472bba930f7eca2b31ee21baf11ee3 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fdbf17901121d508a1c6bb12ce81f111dcae729c88d6e8e3c8faedace227f4 +size 9627 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d5764a6aa0dabe7d8cdde6de1283d62fbb1855d9 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/MHT1_lig3_alpha05_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9d35586b267bbc9c88a9f0165b426c1ce133bd0a8c7fcbc435e6956dff8bfcf +size 230274 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d0e97f8e2574526664318d3dac4de5e700cd26a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e57ef95252e3549594fb8d8ddadd6a5d8441a947030a5bf6ab0377a543c2b502 +size 73 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b356120b0f2ea616198a09ecbddf6adcbb09bbb6 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23658d90a1078c2db1a60e0da37287607df1647a27b90e1c73416e95b1deb4d +size 6789 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..64d1bf1c6d8d10cbf05a510d9a2bfc159a3aa1b2 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/ck2_custcore_hotlys_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f06d68827dcc6e2c5c1f9070f8539d41fd46061f832b49742690017243a843 +size 489418 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_edges.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..5818bfef477a236751650bb3ceba0b1b9ce468f4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be356270180312cf6b2e48ebd2a5f8a0922214df58ec59c374b15ec0d09fb2c9 +size 632 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_ligands.sdf b/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b9fd2a1a43f6a20496c572a068529b95990feb6f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1cae3d1f9872f8aff4ac0f8ea168fcc3d0a914106d5f2bd9bf68ae19248f6a4 +size 36587 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_protein.pdb b/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..87d8401038ce0211fc29c4a05825f4f3e2ed23be --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/hsp90_3hvd_custcore_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46978cb2b76245bba4fda7fd72dfa2bebbc5cbc1562a529c281cec97b134220b +size 363544 diff --git a/fep_benchmark_inputs/structure_inputs/macrocycles/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/macrocycles/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..07f763f232f3048b9c130f3e52d988caf84ccf05 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/macrocycles/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7399823b4a570f234d7a23cfc1354e75355444dbae7074af2338ed0796a1652e +size 803 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_edges.csv b/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..a787659e86277d7f0847708093e36e5564778eaf --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b03b8da66f4d1ab2016926d968c3dc8414246c570c13eb559750e39f28d7bd3 +size 815 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_ligands.sdf b/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..fa52c788edab02327007ca86110aaf243d915fac --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5817f8437ffa189fd39196eb68ff83abf6040a5dae1ee5ccc60b7dcffbc044a +size 75290 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_protein.pdb b/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..49082ab444450efc48ea727797c769f5ebc3c2e6 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/hne_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa3883cff601f03e260fc56e7e22a07637ef4a1c9041a957855d78d36bbc87d +size 334802 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_edges.csv b/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..8c1032f4266c6bd637caf5fa6572c9bc3c6b229e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdde6773abc188d08bebc74e3423a381687296fe4c349692df4d6f91efa33c62 +size 1520 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_ligands.sdf b/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..c26fc9dbc8f47b7b5b1d63f5bfb0d446d9134e82 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:504a6749fe54d1e05d6b8c3ef2216dda49f14fb1f5445e7205261348da7f3ad9 +size 128289 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_protein.pdb b/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..4a6471c6001010f169f2b72d1870ff588e03597f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/renin_customcore_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec71905bb0a0c362e3ebdea0c3d3ba8bcdce34554143b61d8d4ccc8b71543258 +size 437302 diff --git a/fep_benchmark_inputs/structure_inputs/mcs_docking/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/mcs_docking/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..63c7793fcb12e4042bef57bfd620475c1dabcaf5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/mcs_docking/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aca55145c5f6b51430fe7854d0edea9d56f2e64c10e5e20279992b64803b85b +size 293 diff --git a/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf59cad7b87f107506218d3f4c5593031f60574d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0db22c0ea4b48e9f9ca24bdb94bec7ab4df405ca4e2bdad54c733dbb1cca946 +size 1801 diff --git a/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..fa3b1cfd0d3dc49f0044d8215f249fc959a66c15 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7024a5095847f0caadba2029f98d33c57b8ccbf851c16fd2cfaf2ff14498111d +size 146404 diff --git a/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..8fcb4ddb923d6171326a4e287f1f7843fc9fa67a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/cdk8_5cei_new_helix_loop_extra_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e178f43da910184b7441211e468520a1e4f1341650bb215d0a716d7be35151ec +size 903343 diff --git a/fep_benchmark_inputs/structure_inputs/merck/cmet_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/cmet_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..0f9db7b47dd0f10883242e16244cf72d2f034f8a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/cmet_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d66d7380b1c0e7091fd2a738514896e303c9ad37b0b680ec727b332c9605e6e +size 2411 diff --git a/fep_benchmark_inputs/structure_inputs/merck/cmet_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/cmet_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..28338276275474817378426f55654fe2b29ea315 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/cmet_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ba1afb8ce7210d284312f23bf0505dd878d2ebdea76babb6ea641d46903258 +size 96297 diff --git a/fep_benchmark_inputs/structure_inputs/merck/cmet_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/cmet_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..8e4ac0c3af599a1f305fd27f59b9c6e7134f7c7a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/cmet_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb339d65a7183eb06049f0c958365d949df4cdb90d9215eff952524fee58638f +size 410377 diff --git a/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8baea2ba4f386923488b344f39fc662eb5e58e7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:102e88298a5d24f795b09174d097edba32d2a9c4e15121b36fa4f584a1e6564b +size 2354 diff --git a/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b6d2826a5c0774c57b055cdf95c958ffda73c359 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af62b16628d06c46dbec8f2070995c4c6e2bb93506976b1ec734b48f1b0a544e +size 146889 diff --git a/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b22260515b69750288ac5a4fcd204eebb623d171 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/eg5_extraprotomers_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f0fbf5d42f1e313e038fc4442e7639b4f85ee195d8bf123879429cb56004804 +size 486727 diff --git a/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..acafcd67bdf6b2b21324d86525b555456328723d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8de9180643d808c3be922e8a9518839efb240f2783aef58780b006ff46a0eed5 +size 3080 diff --git a/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..2fc3568feabba604b024c451ec7dbfac104e2f91 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd5adfb323a33c972e9ddb4a070ac47b3c9772cbea9c8aafd8edee0fccf46c7 +size 141164 diff --git a/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f7ef6477cf9bccf951eda9724f4c2fcc163276aa --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/hif2a_automap_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83d68189349859c1656ca012d8f9d96b7568650f7a28f4a3ae3c4c731c90c602 +size 143860 diff --git a/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..eac89651cf9fcc2797439fba382770a60307d98a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9a8421921078adefd82b1ea69c069d79c47d1186ba8ab2f754fa806977d9d3e +size 5483 diff --git a/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..868cd7230dc354713053b992e44ef16c5e23e0a9 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1274a7155a41809d086cb86562c8299229fe0b2dcf8ee50152db67e486b76f01 +size 316508 diff --git a/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..a6ba19872bace8213b7cd7914a9f4b29bb8f20cd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/pfkfb3_automap_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5f41aaf38b5414ddc567cfbd7352efda99d5e8d032b6e6274f797e3449158f +size 693197 diff --git a/fep_benchmark_inputs/structure_inputs/merck/shp2_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/shp2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..89984e8319d9167d2a3925f0291b4656c946ace6 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/shp2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1322ed8316e2054ce09a24a2c81451248a6b97091956358780507ff978ea1233 +size 1545 diff --git a/fep_benchmark_inputs/structure_inputs/merck/shp2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/shp2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..dc1f8ed092ba3a714b0510baddb18dd9ec3e4e47 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/shp2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad67652aa37b8b014ffe8be595b526aafcfc26372e566df67713a7845983a3b1 +size 85824 diff --git a/fep_benchmark_inputs/structure_inputs/merck/shp2_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/shp2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b8f4facb03bd7b6fba73085910e06da271746134 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/shp2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb3880d37fab53f1faceffece3170b71cfb91d0c9a55f19a8c1d55781e9889f +size 683503 diff --git a/fep_benchmark_inputs/structure_inputs/merck/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/merck/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..0384486f135d01b7a5dfbc24e699cb343320466f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938f98e529e1ff10516c8b94ea2cd970c4b2aebe981a1d9ba4922e15a1c1d620 +size 819 diff --git a/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..29b9467354aac77e61e76f55616a62237d22e024 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf48d406dd991dac2158b10648dbbb14964a2b93289847e15225b3e4df77705 +size 5304 diff --git a/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..7f4029ecaaef0786765b58b5d85471477de56b63 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb1fbe23c1e4bd4f08521cdca6e1c8ca852dd8f3e918ed877f670c837727a6e +size 213424 diff --git a/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..167f1591948ef84562559e0897758f5ae62e4d09 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/syk_4puz_fullmap_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56c4dfa73f4a95c1b8f9a1bc1c1f894d713537ff4792b91420ede0e3201e7c97 +size 371503 diff --git a/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_edges.csv b/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc30091b9b0949f7d9d30562a8467e6abb9a5354 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e626c165613b0054149d04ea39e54e622f0c21e1626356ffe02ffb4b1a4609a +size 1616 diff --git a/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_ligands.sdf b/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..ab342780ca249554dac716bc3834ae6acdd2216a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bb04fc74a56ab03da7275561b9392b952da833e7902bc1ef3220c585ed53441 +size 101673 diff --git a/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_protein.pdb b/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..ca27c9e3f026a0a0774b76d3918d99aad7c5442a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/merck/tnks2_fullmap_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea16e8660cb1ed185e133a8bc9347024654bd10f4b3bec79fae5e7fefef5849d +size 347588 diff --git a/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_edges.csv b/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..8094f95361cad125bc20f5e3babe1e5976872e9e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe709982cd2ae9550b343bdfd0b377287e55c21759fd0878e0a560e60cd3db2d +size 323 diff --git a/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_ligands.sdf b/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..8ce0c47b8e1654ec56c54ede1d46600daafe34bd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b9b718202cfa2afc2c2527babb564a3c03d6041739a0bd108f3321d8fea4d1d +size 20346 diff --git a/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_protein.pdb b/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..46df2d5f232b84f3fc52264965c980b3100d4f97 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/btk_extra_flip_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44956acdfa34379fd8c0b8f14b69f6b35157b1e76610f2b834c4ab86e6566224 +size 617481 diff --git a/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_edges.csv b/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..31033bf623b98acbc429d998f6ae20c9a7acfa7a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8d20b8b7b69bab3addcc0a48e83f583118b9d04de8da80d981e846a79e37278 +size 444 diff --git a/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_ligands.sdf b/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..d22280b55692c545797b393b42e4e2bb0098fcd1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:520115336f16866af6e9fda0ddafb573c109bd368ab712e105249f996d38951c +size 24915 diff --git a/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_protein.pdb b/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..bec92abe0adbd791d7161c29d09d9dd1b4e9c644 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/cdk8_koehler_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34f90245b13743c7b9eca4e242f9d8ce099d1587ed99060fd72e31a428347e7 +size 1274698 diff --git a/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_edges.csv b/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..7316e337fbebb5e0ba8921032de6004bf39224fd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bbdd6810981bfcffe780428179afc99db3b7af67ec965d76d87915ec765aabb +size 1163 diff --git a/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_ligands.sdf b/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..0b4632a335857cae5a7120dce5ca13e934210abe --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acbba8f2ecbf558cf0346972c2fe9223fa7ef076fea1ca6a5f6725f34a43daab +size 102978 diff --git a/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_protein.pdb b/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..98bd0668a9749cba7998e62dc5b00248d9efd68f --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/galectin3_extra_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5ec787ba1bb57da0ffe0356e49c78d47a9a4138ed52c574d760dfea5ac8b18 +size 332698 diff --git a/fep_benchmark_inputs/structure_inputs/misc/hfaah_edges.csv b/fep_benchmark_inputs/structure_inputs/misc/hfaah_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..8408992bfbdc85539541ce940b68c64e8012b0a2 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/hfaah_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99a32cb7d69f47b2b067058cd6e3fd3fb71cfaef7acbfc12d12a9cf8d9cb74a1 +size 979 diff --git a/fep_benchmark_inputs/structure_inputs/misc/hfaah_ligands.sdf b/fep_benchmark_inputs/structure_inputs/misc/hfaah_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..0c2fcd8f1c67469807c40819ed6b3741bd819001 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/hfaah_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0e493b4b035d0f7670a0d7931ce7a4a1906d56b22128f135fb475f6ce6dc7c +size 78713 diff --git a/fep_benchmark_inputs/structure_inputs/misc/hfaah_protein.pdb b/fep_benchmark_inputs/structure_inputs/misc/hfaah_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f78f2d02a22a481bd1f2f6410387074b355d5368 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/hfaah_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d85760d164862b17aedcca13fa25c569ed76f16c01eef9d68e661f089ee1d40e +size 982955 diff --git a/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_edges.csv b/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..8eb73623d8adcfcb7934591637f6ce3e0f8c2302 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71e9030c49658ee7215eefd6ea31adf7e5f4b67837379fbbd0538066df48ab77 +size 542 diff --git a/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_ligands.sdf b/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..48ae51e6c1499f7ad1fe5924dcd0828ea1753ec1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e5208d19839c3a56ed81320fb63610139330872b6b9e8b899390fb1c21584b1 +size 91353 diff --git a/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_protein.pdb b/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b96db6c7f1c384dcee1593ca7b4fad2c95e501a2 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/hiv_prot_ekegren_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7687d331aba30c1387f85d001b3fde2d7654415b63e91dd3b7b6cf131efe93 +size 303258 diff --git a/fep_benchmark_inputs/structure_inputs/misc/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/misc/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..c9ec0b5be7a7ebffc0a9b0d7bf4453388e2ac174 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/misc/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6484802c91d882f8737db1c075ae4c9469a0b24666347ac4aeb5933ec6f78469 +size 532 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..80843a9648954657cb4a6920f7512a184793b7d6 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b15548e0ebae081b76a34d7ef5134dc8f6adbcfb4a2c09ac2bb8f108bdd20ae +size 135 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..49fd91d8d188294134f28612827551ceaf48de79 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2126a8d6816f1acb148e09336ab64f6d90f2d1df0ca03237a167b9e0f3c312 +size 9230 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..31fb897e53d0d6e05ccc845aef29df292df9a713 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06a3516ab4aea1ab9c9c868fbd12ddd0719e4fa073b20ce0ff3214abdd5d77ca +size 390174 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..3275c16c5c495c153e0a0b60ceb6f53376ef454c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4b9ece1bf552e38d897d2e203266ff1049898ef9a7ee904371bed9b44987065 +size 67 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..38d59084e2b7d73fa22aed1cdb48a33eaf270fd6 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a57fa96cf4b569cc165f59a3545ca024e4afea04dee35aeaa0abf9da53c4953 +size 8728 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f27c6e26bf619db9dbbec37e6fd9cc9ffe899d04 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b60e0c35f27f16d4d7707ca5c74cd4aef0331001b7246892720908dda27e305d +size 443220 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..ed13d90466549daf194cc07beb2ffb760b0ac987 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c17b0b218c1adf57a3b374a88b1eb4214e8aeea8d668e98a5305a910e8986056 +size 239 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..6f40d5c21e4df01c9a56b943eebe4756eaa42b48 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:026cdd91efad4d5efcbab958bb587948f535ee1d30c1f87cb5b2f3bcb352931a +size 13389 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d7c07975be2b1b0814d9578332a22b55df73506a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set3_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72464d6044805582b5f8af24bdb5665cf89e93db9d4a8ca1abc55db5fbe9f06f +size 593726 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4d445d95fc8912e6cb11a1bea13ee382852adbd --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5203b7364e656d359547c35c5921ac853fb23e2165050392b7add97d83338598 +size 69 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..67276beba5e86cb1a859ce15480330b330dff0cf --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce2dd1b59573fe3eb690ebd7ddf12756b5d48ed27f5d83deca757efb4cbb2d1 +size 6768 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..34931471c6f7904240b113b789aa11f8a6e62cbb --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set4_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79304049355cfc535166a1102365608408bccea7e29bf8595f3bf25e767ce3c6 +size 552392 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..15178ee9ee3a4409750a5dcef58eaadc663ff19d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63b78eab81e1d74352c304e6512e6a259ac02ec07e44df78bb824fc8e4a08c7 +size 137 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b59b6e1c8846a56ff5ce1b37a9add69bf6a06039 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d1a149eb60a7038f5755c902d7d085c9ef2caf71e98f94b8c380a3e4d5ca2e2 +size 10275 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..89a12dc4607a0cea3efea74ffd866b496331f6a4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set5_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34f8681c63db1b4790d1f22cd8161e12dd72869e8cb691ea827ad7df928098dd +size 426135 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..3d4df5abc1718c9dcb262f051fa47f701415c41c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3c3fdfd47d0a22b99e4fea2c1c51b86e324e9909f4bbe111d94e7e05ace566f +size 123 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..65b8af6e8d2c7f0f0cc2c7fd6908b818796a4f9c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f18e195bf6f73d60335d0123beecf32e2aa5700071e6ccf66d9cc68c27e5d2 +size 11811 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fe69f1462ea4c6a1730ea01c76ad656e9e111308 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set6_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afc188dca884049f691ff2c8e3891a790ef879d306598644821ee34fddaed00 +size 390421 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b72910f677e3be2008cb6b75d979f1255d1449e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2cbbd3dead195a904681ef4df4c19581bcedbaa1c24f5716179959ff64594d75 +size 136 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..cbc89e037c0c9d4efdea8ead582c64bbb6f69779 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b5fbfd6b3423f69a6a08f8d0ef6dd6fc334b1ded166f5379761f23363691d49 +size 12566 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..e24e1432bbc91449a36f69c7d9f25cd3cd05775e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/chk1_set7_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:011ec8b8226a349ebd4aae20f0c6ec89b802a1bac72c9909448cc3269a67fec0 +size 458645 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..ba1c590df18cd62f0b604bfceb40e11ca26e88c3 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:168e6876a77d17be2dc78a6e6515021c53990f21aa9700cb0a401f6d43dfaee1 +size 330 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..a6c85d96bfdb40545a8d5f5fc8da54d2fd010806 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4804c3907522c98d074ac073c771a9533b3f1a115dc9d921f9c2b019a5507025 +size 38539 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d1e73b12d932cba6c8189407542574abc94d91b7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4640045cc84107397a7a38063b5108b14aa6897db5d2bf8b09a5301e5cdd2c5f +size 713509 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..a29f20d3a8eb8332aff8d5147325825313886f8e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f85b29994b43369d90a00c48ab964a83a31567034920cdf6360d15ea772b62 +size 456 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..7ccb102ff5713cf2404fc44008e91ba595d323a6 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:469cccb0588f4972dece14fd7a481cb8b75993ce35175603ff83270c8b518e62 +size 44372 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d1e73b12d932cba6c8189407542574abc94d91b7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/cr_bace2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4640045cc84107397a7a38063b5108b14aa6897db5d2bf8b09a5301e5cdd2c5f +size 713509 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..65509d67ca74d7f58ae8483977d040c064476e35 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfd291363109656c92532145e60dc9354e78d0d4d235df9e118f6c8bedc9643 +size 240 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..60bd2cfedccd0de3c42bfb24b73a09c4cf11d690 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f4fd1774be35bbf8c153e05317f64faeb3ef29f5a1db7825a171e85b071273 +size 13818 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..1d6c9869c2492fc3eceb05eff27e3d832d8fc257 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set3_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb47297928939eede9b137ecc312bf618801c4559f504357467ef1ef3a516ca3 +size 491127 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..667ec9136306d6a241666917f3a93a1a853284c3 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceab08bc4b915049cb4bc135ed0df368e85bf529c59993214dc7c34fa82eecd2 +size 533 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..c305a532ac3690f7b6cb07083b3ac4767c6bf156 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52fa0829af12b953b8bff37e45ac0d8a0923a6561addcd139db4e7bcf0edada6 +size 42453 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5b00a03f2f336df75acc3c616f270250247a379c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set4_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47852a301fe3dfd563edd74fa5a8197ef3fc43acf99a41e5d3836e2b9652a11 +size 443930 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c8925918a88de5a6d6518b4423bffe45be17685 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdd880efda806747e924756b7796595903e5f2d74b522a6e3ad018ad735f22df +size 68 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..6db27bf3b5851bba359e84b4e00d923d90a3d09a --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b95ed3fdc3ed88205b544187c941ea45e1b371f5505a160048e2e5539f629de +size 10035 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..86c2c968debfec2cb1ca0c7569c289ffdba938ee --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set5_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ccd312c00316e734fe7e15b69faed51d32d9f9296e9f30bd28f9e9e29f059c3 +size 416779 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..92f442b9ddd1230e55813ebbf5dfad7eb39731a5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13fe1d04ac6a102d2e71d7a593521d70ea45d8af34cb0de0b80b22ce9eac32d3 +size 478 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5143ff195747ef556f02c828dd1abcf21a9650b1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f983daeedb8fd4a9b1e8a2f3389f1345e73ad322af869512778822daad5645 +size 23357 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5b00a03f2f336df75acc3c616f270250247a379c --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_set6_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47852a301fe3dfd563edd74fa5a8197ef3fc43acf99a41e5d3836e2b9652a11 +size 443930 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..24ebf944c10614ea85e14c8f7e0c4ccab5056dae --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aab0eced65a71fb7f4bca8dfbab01b8195e5d74be5b0133b4a7ae1f85a4a8c13 +size 1221 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..1940000d7383e677c1faf1cd9c448bfe6a2ea7d5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e42d325e78906a8885859bb03ba9c3c113cd28a07fcf752a35c02615fb9ccab8 +size 137068 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..de41102e365f122ef510d7ff6090ef5edb5e5c60 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/fxa_yoshikawa_set_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:add012cdaf7e54bdb810b1b7b857d08b267f74a98606f3de778079f846643f86 +size 416835 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..b9d0f60f72fdd70b05b37c9dc17c851db7264a74 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:693e9200a375d9c6b838a82280d9bbea7153cf16454f3cfb539124f804396217 +size 534 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..c3b34f97e84934904e1334f69c71ec066bbf1ed4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a14f827e5d7af53ab070df44b0baf6d0b1ca20c53e36e11f31192ceaec38c13 +size 35160 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9ce406a04f57fe5a0bfccf428b90c0cccc959528 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2189c9f61bea40f7134cf75d934426645fb6c2e67eb76fb4f3780d4330131639 +size 522497 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..50a68ef4e286e4146e25693dc1ff7b22338b85c5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45c845bcde06353a36c869cea5e05ceae1585319611bb157f1e2d51f3f8f9df8 +size 606 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..f7e377482e55998248b10034a72dede0ff2cad41 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754fe77f7a371642821323551b893e5b53f480bc336bbf8cd9a6b5d9aefa53fe +size 54553 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9ce406a04f57fe5a0bfccf428b90c0cccc959528 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/hc_bace2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2189c9f61bea40f7134cf75d934426645fb6c2e67eb76fb4f3780d4330131639 +size 522497 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_edges.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb5ab44c358e1e77c56ee598efb5b4f86dccc5e4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8e9707f9e4114ecaca5b1ae1f50993fb44715e9b2e41548c4d42efd077f55c6 +size 232 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_ligands.sdf b/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..5f34a58b9a6ebde30591414762c20f4554d5148e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30ceccd15c9577c9c58982cd9913dd96b59157ff9687b310e700f4dc1ce18a86 +size 18786 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_protein.pdb b/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..bb766b18129ab0c09f27891cf642e5366bf5987e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/pb_bace3_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee17a73e28656a788c95f68b576e1bbf13feb4311c3a0ecc483bc74980608f7c +size 511008 diff --git a/fep_benchmark_inputs/structure_inputs/opls_stress/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/opls_stress/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..99e47fdecbfdd73a26ec031af8e3d13aac30d8e8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/opls_stress/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f723ee143625bb3cd75f10e5d35feeade14ad7f6c060e91c97fb8c76076d9f06 +size 1578 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_edges.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb3a3e57717807af456c6160028c4a5e43d2132d --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:796e9d204f6f794e407a608068c28a0632520cb0ac70f54acd666989f9f2d9fc +size 105 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_ligands.sdf b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..6e715d600280903ad7954170c404868010a40539 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1788c6f5fc6f4dd504a7e327f35e12b147e16dd6938d0ee6a7a9da903accf15a +size 9364 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_protein.pdb b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d25a607372b92e5890a5c7b179fcbb774de81ac7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Bace1_4zsp_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a15213488edcafb3530eebefbb6c3aa11c51166054df1c54bf38dcfe0125334 +size 496726 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_edges.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..7c182682829e5a0378cb4f1384df6128d92163dc --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f23d9a8c86175f408827a34246cf070cfea2f4e30f384d1aed8bf37d8e6288 +size 234 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_ligands.sdf b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..44b1d087f105093b3bbc50bd33c301a8724b67a8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:957f156424d488dda35c343bbcece4073372271fce7a36cb0e34209dfb4de22e +size 19803 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_protein.pdb b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fe69f1462ea4c6a1730ea01c76ad656e9e111308 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/CHK1_3u9n_corehop_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4afc188dca884049f691ff2c8e3891a790ef879d306598644821ee34fddaed00 +size 390421 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_edges.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7cc4b08d282fbc7bcaf2a97404569886a9c02b4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0ab918172afaace8e8ca0d4efe37316eea877a0d8a2385e7c1de214a9bbee0c +size 90 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_ligands.sdf b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..8d362f8f263d25cac57d67ed6c142a9930c27cf1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d76406a6275485117e39c2364d331408ef0c7506b9af253e35416db702a87ba +size 16028 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_protein.pdb b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..7649e33f9d416bb347f3cccde611932268759939 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/EZH2_5ij7_corehop_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64510e26ce55e4267fae5be24a32529adc6e50f66e5bdba738d13eb9b20581d9 +size 1237279 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_edges.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..5816aa18c6992232324f632f2d41e130a9b750ea --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c6091d11d3620a93132d4dcc9ccb62d631cdae37d9c6c6453d77c8436cb923e +size 186 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_ligands.sdf b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..0d1dc9c2db8b577e8c6f14ba83ace90823e4fdaa --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a872a0d26c04a9c1a7a22923d785a523e5c96d25b1c52749e216fba4d2c63112 +size 12515 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_protein.pdb b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..1ec9e8a43a1106c529e8f9ce327082e6b6222e76 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Era_2q70_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df128d6d1cde3f0f4356402860354b1e419af716bd1e16e8cd941186e2cdc31 +size 350598 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_edges.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..5e0384d2318d9687cb16938008833504124ed8ed --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c0132aacb0b313237a73e46daee27ab69dc1911f015deb4fb2f5a4182339693 +size 122 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_ligands.sdf b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..054f2d9052c3439da5c466991be2694b748c7998 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a019badfffdf1c8e9c6e3bc009d52b5fc18298d00b96aaf997fc456df8fcd1e +size 15486 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_protein.pdb b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c15065f90c000130b1078b424f35d9caa65e0534 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/Fxa_2ei8_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4b34c62ad676750fc42d1a9b13802eb1844053d8a7f2f24a44d68a2f67b0022 +size 445828 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_edges.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7edfaf0810b2ff79d6d6e132363585a5aaba782 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd20743cc6690045b1329e573ca94425297b84439f43191defe079ef5cb3ab4d +size 55 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_ligands.sdf b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..0300c9812e9f4596feb5870ddf73be7b41f69365 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba717703b00ebe40991d86ba54dd2e38bb55c8ca186125bb95341d825dca721 +size 8474 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_protein.pdb b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c0d36de906ef3ba714e03a8293338fd1c4d59b19 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/TPSB2_3v7t_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adbfb64c46b1e24f4cfeb1a89c76b44fbdfa117b18324d9561e9041f0941f2ef +size 361329 diff --git a/fep_benchmark_inputs/structure_inputs/scaffold_hopping/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..c5e31fdbbb663a572bb54e01657ff703af8950f5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/scaffold_hopping/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12df3ce9790a92edeed3a1bf1b2af4a98e16f92859588ed4fc6d8edf636f3cee +size 734 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..d242ef9ba892927510cf28c0969b5e9b6b213793 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfd3c399fdd0712801fa6ac43405fe73e1cdae5d833c59cf9ffd6fb194662f48 +size 574 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..ab1ca7a2ce2ed1548b756cf66c119952e8399618 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d81fa48bc31f60b4acb0f98e0c918fa17b0bf1e17208e42486a4274f5e64a44 +size 26623 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..51adb013ae1391e236e3ca716420723e5e7578ed --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/brd41_ASH106_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ec0dc73e9f289e89792b8124b86e794907c8548006968b7c52478a5034605b6 +size 209588 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/chk1_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/chk1_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..e67fe75e9c310912d1b079b18988b7add4533684 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/chk1_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d903d42b1536393ad073fd9d848b7714a7e08052c2819a6cf79859d7436b8480 +size 704 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/chk1_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/chk1_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..afbbb9a28e21a03030b8f410d888dde259455ca7 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/chk1_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:007e3686b9950bff69c6794d555ca0aeab2f42049c48e60ceb5d2c1d0b5926f1 +size 54970 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/chk1_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/chk1_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..ef6f90931403e2d53eb32664250f7d65678f8ce4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/chk1_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c6bc22efd0f477811ec0a47a3564da762b83be9fd0e52e18f307b3f6100fdea +size 400938 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..3dd1d01159653bba9ad735791ceaf9f0f5f302a8 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d484460cdc682928d442c7473cc6cec2f1f600722dbd3e7a6a414f02167f6bb +size 642 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..d9549913a10cbddd2f46fbb5a6d3c3405e4994a4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6057951c9a80c04862459a11827d76ce12b7802fd182dcbeca1b963b999be4c +size 27441 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..1903665cb21d260ab19aac5a4d544932731bce1e --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_kung_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee8c32249c517d1259053b57ebec514ee61507dc0bf69304fadcf67de4593e71 +size 326452 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..c45a5b3936d97c9682a836f62513f0a23eb3e981 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27a19b60bc7a60c0a22e07653fd49a05327a2ec74003843636539be74911a3a3 +size 133 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..b6b2abd6f893945400f046dcda09ae80fe5a1545 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04daee4d23c6e0fb1ee950a0ee2996a1496ccb4f4a82b38d0a7db6773130d91e +size 12758 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..a350df65de412c619e9d6df1564e0b59d7ea1eb1 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/hsp90_woodhead_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c44f82f9fd09cede230465115573f91f0c905372ccfc4ccf87103b6beb2ae74a +size 343313 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..2e74afb3a20ecc62bb0347b03a8795b14bb61365 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2979206b5af1e86dece889e9e224c9503a2c2badd97c3acab708439d2dda3cdc +size 310 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..bcdfc9604b96b2679972dbcf9956180227313d16 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b04eb2912d6ca9c72e4f6e74e6031d0cf760c055b8e32ddf7eedd3221a578cd +size 24867 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..536c61b576e77ad0389936fc8d4a5df6cc17b0d5 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/scyt_dehyd_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91aaecc448aa97db03710aab88a6f8dc02a14e135d096e9e345d364087029e31 +size 255677 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/subset_metadata.csv b/fep_benchmark_inputs/structure_inputs/waterset/subset_metadata.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8e90e1abf50e980173212316f7f6181ad6422bf --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/subset_metadata.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3416e1dec300d7aabd7c3581530be27548b1029a9c76ff0430714241199e84b +size 839 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/taf12_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/taf12_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..45d221249e14c11224db746fc591ced1ab778d8b --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/taf12_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00f17bc8c93ae7400b436683cc5ffa74b8a3dccfac6ea7cde0064d322a64b88d +size 590 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/taf12_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/taf12_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..dbc34314bc33c6d986c639ed60866add1c7777b2 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/taf12_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11bb77c787eea9de3828706505e8cf8a78e8f055bd5016a0038bbf7e0b96c9cc +size 26621 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/taf12_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/taf12_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b21d89e4fa87b93dd26148d48a7f6ed49cd7fe47 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/taf12_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc6c0bf5e4f985b7cfa9259f2af30ef281737162d178888918394740e19dfa7 +size 228984 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..21f3df09ff172ab2d3082fd4a910bd295b54de78 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce1e3dccf0a85008fe8872a6ebfeca2d41b341869d0d72906b42f1be219c7d89 +size 1673 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..94eb43049ddd9d5723021d5e44c82b1a93547ae4 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:534da366af8e413b2d8e30436b8e876b5c7511bfd5178308a8bd6db5fdcfd4d6 +size 156957 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..a7d103f78d1ff3fdb23f543a0bf4fd3b337fd4df --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/throm_nozob_hip75_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e5f3602212eaca6cc30a078f6057cfc412428e289e981a00e76ebec369a1105 +size 435378 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/urokinase_edges.csv b/fep_benchmark_inputs/structure_inputs/waterset/urokinase_edges.csv new file mode 100644 index 0000000000000000000000000000000000000000..d6f1df50877fc4890f04e9bc46e85f2950bea934 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/urokinase_edges.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88dc2d439930cec7b7b4c6a47ed9e87bbfb4bd607acaa37365c168f166846434 +size 431 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/urokinase_ligands.sdf b/fep_benchmark_inputs/structure_inputs/waterset/urokinase_ligands.sdf new file mode 100644 index 0000000000000000000000000000000000000000..faafc71e609a0a095948a1c251e9feb0bb290cbb --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/urokinase_ligands.sdf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21d433ad2e0577684bd20284d259a3647b115a5149b8ecab4b1f7c2753bd7575 +size 12780 diff --git a/fep_benchmark_inputs/structure_inputs/waterset/urokinase_protein.pdb b/fep_benchmark_inputs/structure_inputs/waterset/urokinase_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..35ea33173ad767bc2514afe0061d8cdeb9666640 --- /dev/null +++ b/fep_benchmark_inputs/structure_inputs/waterset/urokinase_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ebc609c756213a12b5bd126b44987f4efdd3ee830a4d0202547757b27e691f0 +size 381214 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/bace_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f54bfc62cdc0a08b3bb0e9e8309a3af80f087c90 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2391c75b667db9af388db03b35f49074289f3b5adafc2f350a7017fc4428f4e7 +size 118349 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/cdk2_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fe20e0608bcf52f080e69401a73f2db3ff289b3e --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642cf94874862c26cb0a349413656db8d079c7fdcf27461e3828cc2025e25a1c +size 91944 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b05e8c5302c44b2e623c99ccc8ac21df04284fed --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5fac99015d2f077fbf8a1756209e164e2af967896c5485c7810f469e18807a +size 95508 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..cf3fbc8974956f862f795f94c56eae98e029c969 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f696f625a3eb7b82af752d1b44afd16a55c2b1ed31a76f54d772626a19557256 +size 101019 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/p38_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c12b758ba570887ebefab8f1d6fe3c522c414733 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c018094c6c4927c9224d9ba361fb4ab5aa8cab7e24877aff731719bddcd1de2b +size 118511 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/ptp1b_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..77e3d0dc1ef8c43cf69729862c8994e562ca032d --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ed7b69c77590d5195db44aa6769e5d22d4bc5a50b2b7af22e34266dfa50476 +size 102068 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/thrombin_core_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9e3ff36d4692bbbfc240fd48fbc9b549468c22c4 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745ef6422d3975eafa9b036dc47ef3f3f665cd4f3bb40eaba394d6ef704161a9 +size 116407 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/tyk2_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..4342e20d0187e2ea2b59a1a50990c7221d255981 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167e0247093e581e142ccf9428d30d3f4d9d83ca134ba9b446405e79a2608c1e +size 89351 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f44a2f05e77edcb6707d6b6d0798751c2a549e45 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6a6ab072e223b7bc9025fa1e7cb12a398592c62ef2e71f4df26b51e94199e0 +size 223569 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/cmet_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/cmet_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6bc7fe54f1aeb37b7c44d760d11faa1ba13e82f9 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/cmet_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1021a5ca999babf2f6c65df4aecbce7e8bfa077e0ce724564cee2ac7be84efa +size 108872 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/eg5_extraprotomers_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/eg5_extraprotomers_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..3850a69b6521cb3ba05e4314ffbe91006a5a789d --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/eg5_extraprotomers_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a63f1362440c8e221379d893e16872d15ae49af01458814be77ffa485d09283 +size 111870 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/hif2a_automap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/hif2a_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..8b6da7c331c0418ff992d406406889569c5e91ed --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/hif2a_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ffb32d7f3fc45caca218754d459af7d94eec4cf0fed704288a70f42020e88e +size 114542 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/pfkfb3_automap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/pfkfb3_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..62610611ebb1f6b13752ac82be9b7b8180fbee5e --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/pfkfb3_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86992bb045e96555e44854739e2f8c580e2190b18f1c865016296b15be345494 +size 124262 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/shp2_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/shp2_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..ffd4d8271d22eefabab6af5e2e1a999786b89ee9 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/shp2_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca435598688de04ed99580f10f06cfb8a89f526ce3d022b330d9e6aae1c95470 +size 106604 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/syk_4puz_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/syk_4puz_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c29d08ae0da3068a6c288c48fe0d0f0efa0989ff --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/syk_4puz_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235ddd1a253188b08caeda37adba27975d3701cc998de65c5a4ba20916296f51 +size 103122 diff --git a/pocket_pdbs/CUTOFF_10_BOX_10/merck/tnks2_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_10/merck/tnks2_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..2d9720a19d22db48de498dea106d6aa43ec31d25 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_10/merck/tnks2_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1780e0ca0fce8d66fc42f53032d23a4f49b522a3cca94751f07c36ee991a91fb +size 100855 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/bace_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f54bfc62cdc0a08b3bb0e9e8309a3af80f087c90 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2391c75b667db9af388db03b35f49074289f3b5adafc2f350a7017fc4428f4e7 +size 118349 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/cdk2_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fe20e0608bcf52f080e69401a73f2db3ff289b3e --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:642cf94874862c26cb0a349413656db8d079c7fdcf27461e3828cc2025e25a1c +size 91944 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b05e8c5302c44b2e623c99ccc8ac21df04284fed --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a5fac99015d2f077fbf8a1756209e164e2af967896c5485c7810f469e18807a +size 95508 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..cf3fbc8974956f862f795f94c56eae98e029c969 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f696f625a3eb7b82af752d1b44afd16a55c2b1ed31a76f54d772626a19557256 +size 101019 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/p38_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c12b758ba570887ebefab8f1d6fe3c522c414733 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c018094c6c4927c9224d9ba361fb4ab5aa8cab7e24877aff731719bddcd1de2b +size 118511 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/ptp1b_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..77e3d0dc1ef8c43cf69729862c8994e562ca032d --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9ed7b69c77590d5195db44aa6769e5d22d4bc5a50b2b7af22e34266dfa50476 +size 102068 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/thrombin_core_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9e3ff36d4692bbbfc240fd48fbc9b549468c22c4 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:745ef6422d3975eafa9b036dc47ef3f3f665cd4f3bb40eaba394d6ef704161a9 +size 116407 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/tyk2_protein.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..4342e20d0187e2ea2b59a1a50990c7221d255981 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:167e0247093e581e142ccf9428d30d3f4d9d83ca134ba9b446405e79a2608c1e +size 89351 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f44a2f05e77edcb6707d6b6d0798751c2a549e45 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6a6ab072e223b7bc9025fa1e7cb12a398592c62ef2e71f4df26b51e94199e0 +size 223569 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/cmet_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/cmet_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6bc7fe54f1aeb37b7c44d760d11faa1ba13e82f9 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/cmet_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1021a5ca999babf2f6c65df4aecbce7e8bfa077e0ce724564cee2ac7be84efa +size 108872 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/eg5_extraprotomers_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/eg5_extraprotomers_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..3850a69b6521cb3ba05e4314ffbe91006a5a789d --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/eg5_extraprotomers_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a63f1362440c8e221379d893e16872d15ae49af01458814be77ffa485d09283 +size 111870 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/hif2a_automap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/hif2a_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..8b6da7c331c0418ff992d406406889569c5e91ed --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/hif2a_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ffb32d7f3fc45caca218754d459af7d94eec4cf0fed704288a70f42020e88e +size 114542 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/pfkfb3_automap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/pfkfb3_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..62610611ebb1f6b13752ac82be9b7b8180fbee5e --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/pfkfb3_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86992bb045e96555e44854739e2f8c580e2190b18f1c865016296b15be345494 +size 124262 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/shp2_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/shp2_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..ffd4d8271d22eefabab6af5e2e1a999786b89ee9 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/shp2_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca435598688de04ed99580f10f06cfb8a89f526ce3d022b330d9e6aae1c95470 +size 106604 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/syk_4puz_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/syk_4puz_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c29d08ae0da3068a6c288c48fe0d0f0efa0989ff --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/syk_4puz_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:235ddd1a253188b08caeda37adba27975d3701cc998de65c5a4ba20916296f51 +size 103122 diff --git a/pocket_pdbs/CUTOFF_10_BOX_20/merck/tnks2_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_10_BOX_20/merck/tnks2_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..2d9720a19d22db48de498dea106d6aa43ec31d25 --- /dev/null +++ b/pocket_pdbs/CUTOFF_10_BOX_20/merck/tnks2_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1780e0ca0fce8d66fc42f53032d23a4f49b522a3cca94751f07c36ee991a91fb +size 100855 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/bace_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..8d9b97bf4b4033e69e379bcdd3e84b857876a35a --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfe143da0afb2b5f259bf6602b6e3c295443039717a1ff0dfcbf5512dbfd9a0 +size 51767 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/cdk2_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6d333f32b54c7a8653d70debdab916519b8462eb --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e3697df3b90a8abfa63b78fc0473eeea1a64273404d2a66b810fc3dc2a6530 +size 44720 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..42e6ed287923a5181697439bc6f997d297c4133f --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17cc207762a8205afe279300cd005f6b8446b7be6188a1fff77b129816b5de4c +size 37673 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5e2b2d3d889ffeeea78b234ad638cb3ed004aed1 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19c6cf81ee266fb3f4ceb0aac59158ee5491dbcae76769536a4087fa5c12d50 +size 46421 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/p38_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f18d673893e23fa2552518cb36de3812a57e857f --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373158a06b7005945e4017c9eb46951a1647e39b3b7a52ca0857b8bef21611cc +size 51362 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/ptp1b_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..0090e72835e1dfc6da530cde619241b6f689c508 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e2cdbf77fca779b30c5cedfbe08626cd1da6acedb503d08534e2b88f6725d8 +size 41966 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/thrombin_core_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b35805cd3af4f25bb430bbc7f2303f22a85d43ce --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1cfbc5ca0a4adc336dda04256884d3f84aa5fdef6d0b01aa07a499487eb4ee +size 51121 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/tyk2_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..49df34e95ad711d546f9f1ff639ccd2caf1d6f86 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60fc71e075ea28ad2af845f3e1ab8351fa912180348fd8b1385b2d4a154ee356 +size 41399 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..e7becda7ca1d6da12c11e9b23af3c013ed44d873 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932d77e786beb17a6160c9a38bebbc6fb46c1fb3193260e26f50b42e7e7f1f37 +size 104175 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/cmet_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/cmet_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5e6fb8db7575cde5ced01823b0957838f8c0be56 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/cmet_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8f118e342902c4be4a59f0b2155378daf9252079a16d69f5edc1f4c72da1b3 +size 44963 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/eg5_extraprotomers_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/eg5_extraprotomers_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..785fe575676330dd0a1d1b52ced42345aaf5ade1 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/eg5_extraprotomers_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7465c0a7570084ed1a019c25202e2fd8dac919d07560df3d145dc521ee2b4693 +size 51849 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/hif2a_automap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/hif2a_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c60f1b76acfb4550e0ea8a325f8b8de54f903d34 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/hif2a_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338a37afe7bffefa7535912f07570444aaf5771459b3d589bfded2468989dfad +size 59381 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/pfkfb3_automap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/pfkfb3_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..3da0af4d358f5c66f68efb20ce35aea387607934 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/pfkfb3_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f22900049c5c0abdb4a4c07aff08ca66607759da0469b3dc0281832c709f04 +size 55979 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/shp2_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/shp2_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..dfd35670233dbe9f52e6b13bea9a511397732217 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/shp2_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee03610d808e92eda6e99387aa036c2686d982872ccbaacc3313980f889d3fc8 +size 47798 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/syk_4puz_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/syk_4puz_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..36bf5d4008a639479de1014d7c536fbc77c4b551 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/syk_4puz_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a0c6ef3bca91e352ebe9d5f4c2d2adcc799ce6f337286099887d6568f7e4d4 +size 53874 diff --git a/pocket_pdbs/CUTOFF_6_BOX_10/merck/tnks2_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_10/merck/tnks2_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..bd114052dc2aee608b2f14e497b761136f924724 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_10/merck/tnks2_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063765404e0463ceb69c28492332d716146dadedeb3352caed52126963052bd4 +size 44559 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/bace_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..8d9b97bf4b4033e69e379bcdd3e84b857876a35a --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfe143da0afb2b5f259bf6602b6e3c295443039717a1ff0dfcbf5512dbfd9a0 +size 51767 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/cdk2_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..6d333f32b54c7a8653d70debdab916519b8462eb --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1e3697df3b90a8abfa63b78fc0473eeea1a64273404d2a66b810fc3dc2a6530 +size 44720 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..42e6ed287923a5181697439bc6f997d297c4133f --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17cc207762a8205afe279300cd005f6b8446b7be6188a1fff77b129816b5de4c +size 37673 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5e2b2d3d889ffeeea78b234ad638cb3ed004aed1 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a19c6cf81ee266fb3f4ceb0aac59158ee5491dbcae76769536a4087fa5c12d50 +size 46421 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/p38_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f18d673893e23fa2552518cb36de3812a57e857f --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373158a06b7005945e4017c9eb46951a1647e39b3b7a52ca0857b8bef21611cc +size 51362 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/ptp1b_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..0090e72835e1dfc6da530cde619241b6f689c508 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07e2cdbf77fca779b30c5cedfbe08626cd1da6acedb503d08534e2b88f6725d8 +size 41966 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/thrombin_core_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..b35805cd3af4f25bb430bbc7f2303f22a85d43ce --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d1cfbc5ca0a4adc336dda04256884d3f84aa5fdef6d0b01aa07a499487eb4ee +size 51121 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/tyk2_protein.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..49df34e95ad711d546f9f1ff639ccd2caf1d6f86 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60fc71e075ea28ad2af845f3e1ab8351fa912180348fd8b1385b2d4a154ee356 +size 41399 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..e7becda7ca1d6da12c11e9b23af3c013ed44d873 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:932d77e786beb17a6160c9a38bebbc6fb46c1fb3193260e26f50b42e7e7f1f37 +size 104175 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/cmet_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/cmet_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..5e6fb8db7575cde5ced01823b0957838f8c0be56 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/cmet_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b8f118e342902c4be4a59f0b2155378daf9252079a16d69f5edc1f4c72da1b3 +size 44963 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/eg5_extraprotomers_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/eg5_extraprotomers_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..785fe575676330dd0a1d1b52ced42345aaf5ade1 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/eg5_extraprotomers_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7465c0a7570084ed1a019c25202e2fd8dac919d07560df3d145dc521ee2b4693 +size 51849 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/hif2a_automap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/hif2a_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c60f1b76acfb4550e0ea8a325f8b8de54f903d34 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/hif2a_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:338a37afe7bffefa7535912f07570444aaf5771459b3d589bfded2468989dfad +size 59381 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/pfkfb3_automap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/pfkfb3_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..3da0af4d358f5c66f68efb20ce35aea387607934 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/pfkfb3_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f22900049c5c0abdb4a4c07aff08ca66607759da0469b3dc0281832c709f04 +size 55979 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/shp2_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/shp2_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..dfd35670233dbe9f52e6b13bea9a511397732217 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/shp2_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee03610d808e92eda6e99387aa036c2686d982872ccbaacc3313980f889d3fc8 +size 47798 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/syk_4puz_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/syk_4puz_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..36bf5d4008a639479de1014d7c536fbc77c4b551 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/syk_4puz_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72a0c6ef3bca91e352ebe9d5f4c2d2adcc799ce6f337286099887d6568f7e4d4 +size 53874 diff --git a/pocket_pdbs/CUTOFF_6_BOX_20/merck/tnks2_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_6_BOX_20/merck/tnks2_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..bd114052dc2aee608b2f14e497b761136f924724 --- /dev/null +++ b/pocket_pdbs/CUTOFF_6_BOX_20/merck/tnks2_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:063765404e0463ceb69c28492332d716146dadedeb3352caed52126963052bd4 +size 44559 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/bace_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..50acc1cdc55f425c08feb9dca293893a387aef39 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f55dd0187805282a6d5b72e63983c41d7fbd0eb61df6c4de5387e05218fb57e +size 81737 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/cdk2_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..95aa8a236dfccbc653e424a09541bedc37b53a05 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d0978ab7049b026c0e6c0b96215c3f685bcf9779a59c04d0c99a8b1ea9fd3e +size 74528 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..7faa98dc387a991afdb4dc31d302c83804ef08ef --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5bc8160b14b17eb9c20f854ae42cb27eecab8dfcc101bca3f152e9e87c388f +size 69183 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..0ab36738afe3f8d404481ed75e1d8e647c10bde0 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd814da22323d7fbdc335e2d003b158056a223c59581fe75d7dc1cf7d1e10138 +size 76715 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/p38_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..cc5ef5396f5a33b03d538a7f85bdf6ba09b6cb53 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70764e0553a56cb609fe3b3af6539afccb1abc67bb96ce01f77791126af6becd +size 86678 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/ptp1b_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..02d1e17c58d3bb2091c02ac843ed40060fdbc79e --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b55155ad21c4d50261b804c9752075f64ca0a261fe028038a9af2f8808ab7f +size 67643 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/thrombin_core_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..2c7ae4beb3a616f057bae1a71e2c33f4d2bea6ba --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71befe8d46e4b7da7e011d17af0c5874d25d66476b6221d02e2718b1059716eb +size 88138 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/tyk2_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fee1a50c5887923228a8b1b4bdc464605f3be637 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c3bd550bc5f0f88091379dd969e60092b3ebd3202ff80837a35d10c3e3a804 +size 69911 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..db95febc60290d7aab99d7f56a576f8ad3d10a5e --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ca4712d0526f8337fbfa65483f1e400d521416eb1e20f81011a8abdd68cf7a +size 169299 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/cmet_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/cmet_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c420eaa52006d46d40e2aa9e5557c1649be19ed7 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/cmet_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43532f248585c9b9f9557db50fb9b7ca17fa9c661fbf845740edf41474b72150 +size 85301 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/eg5_extraprotomers_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/eg5_extraprotomers_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c927c5fdd7cf588ba1b85e50a5e187598c23690b --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/eg5_extraprotomers_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8c24774fb876beafaa3d25229bc8c835c97df7131b2c693057df4737a49079 +size 78660 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/hif2a_automap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/hif2a_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d8b3b882f6bb405a76f75a91620f1e554c2b7524 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/hif2a_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fd77409d3db9a932e5882ad43079e3eeec4f7b2eca06bb9f24c879bbed6e44 +size 85301 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/pfkfb3_automap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/pfkfb3_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..316c9f0607cdc735a95e6df039b4ba18c9bd1daa --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/pfkfb3_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4f529c1a69a7b86e29a7f98ca15f1345ff2b7ab7e9adee407da18c303ae3f7 +size 90404 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/shp2_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/shp2_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c9cca9d2718bdf9d1b0f5e5254798d944f20dd56 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/shp2_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a83464619a6db3781fe04631bb8daebce666e833fcaedfeb30c9113f3a03272 +size 76958 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/syk_4puz_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/syk_4puz_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f579dae39ec326e0b7c9243a88c1f557e5ba455c --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/syk_4puz_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00ffabefb7848fe22798aa9a033c8311a634dfbad3beeb34666717fc78f537c +size 78660 diff --git a/pocket_pdbs/CUTOFF_8_BOX_10/merck/tnks2_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_10/merck/tnks2_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f04967791bc86ff88ae40fc57fc411b100e48d8c --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_10/merck/tnks2_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a18fe6e2328f8224e6854c23b78d8246a93edc6bf18c934046c8f51edeea63a +size 71614 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/bace_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/bace_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..50acc1cdc55f425c08feb9dca293893a387aef39 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/bace_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f55dd0187805282a6d5b72e63983c41d7fbd0eb61df6c4de5387e05218fb57e +size 81737 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/cdk2_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/cdk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..95aa8a236dfccbc653e424a09541bedc37b53a05 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/cdk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03d0978ab7049b026c0e6c0b96215c3f685bcf9779a59c04d0c99a8b1ea9fd3e +size 74528 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..7faa98dc387a991afdb4dc31d302c83804ef08ef --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/jnk1_manual_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f5bc8160b14b17eb9c20f854ae42cb27eecab8dfcc101bca3f152e9e87c388f +size 69183 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..0ab36738afe3f8d404481ed75e1d8e647c10bde0 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/mcl1_extra_flips_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd814da22323d7fbdc335e2d003b158056a223c59581fe75d7dc1cf7d1e10138 +size 76715 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/p38_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/p38_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..cc5ef5396f5a33b03d538a7f85bdf6ba09b6cb53 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/p38_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70764e0553a56cb609fe3b3af6539afccb1abc67bb96ce01f77791126af6becd +size 86678 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/ptp1b_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/ptp1b_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..02d1e17c58d3bb2091c02ac843ed40060fdbc79e --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/ptp1b_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39b55155ad21c4d50261b804c9752075f64ca0a261fe028038a9af2f8808ab7f +size 67643 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/thrombin_core_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/thrombin_core_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..2c7ae4beb3a616f057bae1a71e2c33f4d2bea6ba --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/thrombin_core_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71befe8d46e4b7da7e011d17af0c5874d25d66476b6221d02e2718b1059716eb +size 88138 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/tyk2_protein.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/tyk2_protein.pdb new file mode 100644 index 0000000000000000000000000000000000000000..fee1a50c5887923228a8b1b4bdc464605f3be637 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/jacs_set/tyk2_protein.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c3bd550bc5f0f88091379dd969e60092b3ebd3202ff80837a35d10c3e3a804 +size 69911 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..db95febc60290d7aab99d7f56a576f8ad3d10a5e --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/cdk8_5cei_new_helix_loop_extra_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20ca4712d0526f8337fbfa65483f1e400d521416eb1e20f81011a8abdd68cf7a +size 169299 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/cmet_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/cmet_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c420eaa52006d46d40e2aa9e5557c1649be19ed7 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/cmet_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43532f248585c9b9f9557db50fb9b7ca17fa9c661fbf845740edf41474b72150 +size 85301 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/eg5_extraprotomers_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/eg5_extraprotomers_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c927c5fdd7cf588ba1b85e50a5e187598c23690b --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/eg5_extraprotomers_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a8c24774fb876beafaa3d25229bc8c835c97df7131b2c693057df4737a49079 +size 78660 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/hif2a_automap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/hif2a_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..d8b3b882f6bb405a76f75a91620f1e554c2b7524 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/hif2a_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fd77409d3db9a932e5882ad43079e3eeec4f7b2eca06bb9f24c879bbed6e44 +size 85301 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/pfkfb3_automap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/pfkfb3_automap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..316c9f0607cdc735a95e6df039b4ba18c9bd1daa --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/pfkfb3_automap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4f529c1a69a7b86e29a7f98ca15f1345ff2b7ab7e9adee407da18c303ae3f7 +size 90404 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/shp2_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/shp2_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..c9cca9d2718bdf9d1b0f5e5254798d944f20dd56 --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/shp2_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a83464619a6db3781fe04631bb8daebce666e833fcaedfeb30c9113f3a03272 +size 76958 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/syk_4puz_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/syk_4puz_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f579dae39ec326e0b7c9243a88c1f557e5ba455c --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/syk_4puz_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00ffabefb7848fe22798aa9a033c8311a634dfbad3beeb34666717fc78f537c +size 78660 diff --git a/pocket_pdbs/CUTOFF_8_BOX_20/merck/tnks2_fullmap_pocket.pdb b/pocket_pdbs/CUTOFF_8_BOX_20/merck/tnks2_fullmap_pocket.pdb new file mode 100644 index 0000000000000000000000000000000000000000..f04967791bc86ff88ae40fc57fc411b100e48d8c --- /dev/null +++ b/pocket_pdbs/CUTOFF_8_BOX_20/merck/tnks2_fullmap_pocket.pdb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a18fe6e2328f8224e6854c23b78d8246a93edc6bf18c934046c8f51edeea63a +size 71614