2021-06-23 Meeting notes
Date
Jun 23, 2021
Participants
@Jeffrey Wagner
@Connor Davel
@Owen Madin
@Lily Wang
Discussion topics
Item | Notes |
---|---|
Organizing project pages |
|
Review of reproducing case |
|
Proton transfer dataset generation |
|
PDB connectivity guesses are really bad |
from rdkit import Chem
from openff.toolkit.topology import Molecule
rdmol = Chem.MolFromPDBFile('sqm_original.pdb', removeHs=False)
mol_from_pdb = Molecule.from_rdkit(rdmol,
allow_undefined_stereo=True,
hydrogens_are_explicit=True)
input_mol = Molecule.from_file('input_original.sdf')
mol_from_pdb.is_isomorphic_with(input_mol,
bond_order_matching=False,
formal_charge_matching=False,
aromatic_matching=False,
) |