Published September 13, 2024
| Version 1.0
Dataset
Open
Docked structures from "Optimizing active learning for free energy calculations"
Description
This archive contains the docked TYK2 structures used in the paper "Optimizing active learning for free energy calculations" (https://doi.org/10.1016/j.ailsci.2022.100050). AM1-BCC charges are stored in the field "AM1Cache" in the SD file. The charges can be extracted using the code sample below.
from rdkit import Chem
import base64
import pickle
suppl = Chem.SDMolSupplier("10k_most_similar_tyk2_charged.sdf", removeHs=False)
for mol in suppl:
am1 = mol.GetProp("AM1Cache")
am1_charges = pickle.loads(base64.b64decode(mol.GetProp("AM1Cache")))
assert len(am1_charges) == mol.GetNumAtoms(), "Charge cache has different number of charges than mol atoms"
Files
Files
(84.7 MB)
| Name | Size | Download all |
|---|---|---|
|
md5:95f82562538358677a11e57b2342af96
|
84.7 MB | Download |
Additional details
Related works
- References
- Publication: 10.1016/j.ailsci.2022.100050 (DOI)
Software
- Repository URL
- https://github.com/google-research/google-research/tree/master/al_for_fep
- Programming language
- Python
- Development Status
- Active