File size: 18,225 Bytes
35cdf53 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
"""Tools for calculating features for ligands."""
import collections
from collections.abc import Mapping, Sequence
from absl import logging
from flax_model.alphafold3.cpp import cif_dict
import numpy as np
import rdkit.Chem as rd_chem
from rdkit.Chem import AllChem as rd_all_chem
_RDKIT_MMCIF_TO_BOND_TYPE: Mapping[str, rd_chem.BondType] = {
'SING': rd_chem.BondType.SINGLE,
'DOUB': rd_chem.BondType.DOUBLE,
'TRIP': rd_chem.BondType.TRIPLE,
}
_RDKIT_BOND_TYPE_TO_MMCIF: Mapping[rd_chem.BondType, str] = {
v: k for k, v in _RDKIT_MMCIF_TO_BOND_TYPE.items()
}
_RDKIT_BOND_STEREO_TO_MMCIF: Mapping[rd_chem.BondStereo, str] = {
rd_chem.BondStereo.STEREONONE: 'N',
rd_chem.BondStereo.STEREOE: 'E',
rd_chem.BondStereo.STEREOZ: 'Z',
rd_chem.BondStereo.STEREOCIS: 'Z',
rd_chem.BondStereo.STEREOTRANS: 'E',
}
class MolFromMmcifError(Exception):
"""Raised when conversion from mmCIF to RDKit Mol fails."""
class UnsupportedMolBondError(Exception):
"""Raised when we try to handle unsupported RDKit bonds."""
def _populate_atoms_in_mol(
mol: rd_chem.Mol,
atom_names: Sequence[str],
atom_types: Sequence[str],
atom_charges: Sequence[int],
implicit_hydrogens: bool,
ligand_name: str,
atom_leaving_flags: Sequence[str],
):
"""Populate the atoms of a Mol given atom features.
Args:
mol: Mol object.
atom_names: Names of the atoms.
atom_types: Types of the atoms.
atom_charges: Charges of the atoms.
implicit_hydrogens: Whether to mark the atoms to allow implicit Hs.
ligand_name: Name of the ligand which the atoms are in.
atom_leaving_flags: Whether the atom is possibly a leaving atom. Values from
the CCD column `_chem_comp_atom.pdbx_leaving_atom_flag`. The expected
values are 'Y' (yes), 'N' (no), '?' (unknown/unset, interpreted as no).
Raises:
ValueError: If atom type is invalid.
"""
# Map atom names to the position they will take in the rdkit molecule.
atom_name_to_idx = {name: i for i, name in enumerate(atom_names)}
for atom_name, atom_type, atom_charge, atom_leaving_flag in zip(
atom_names, atom_types, atom_charges, atom_leaving_flags, strict=True
):
try:
if atom_type == 'X':
atom_type = '*'
atom = rd_chem.Atom(atom_type)
except RuntimeError as e:
raise ValueError(f'Failed to use atom type: {str(e)}') from e
if not implicit_hydrogens:
atom.SetNoImplicit(True)
atom.SetProp('atom_name', atom_name)
atom.SetProp('atom_leaving_flag', atom_leaving_flag)
atom.SetFormalCharge(atom_charge)
residue_info = rd_chem.AtomPDBResidueInfo()
residue_info.SetName(_format_atom_name(atom_name, atom_type))
residue_info.SetIsHeteroAtom(True)
residue_info.SetResidueName(ligand_name)
residue_info.SetResidueNumber(1)
atom.SetPDBResidueInfo(residue_info)
atom_index = mol.AddAtom(atom)
assert atom_index == atom_name_to_idx[atom_name]
def _populate_bonds_in_mol(
mol: rd_chem.Mol,
atom_names: Sequence[str],
bond_begins: Sequence[str],
bond_ends: Sequence[str],
bond_orders: Sequence[str],
bond_is_aromatics: Sequence[bool],
):
"""Populate the bonds of a Mol given bond features.
Args:
mol: Mol object.
atom_names: Names of atoms in the molecule.
bond_begins: Names of atoms at the beginning of the bond.
bond_ends: Names of atoms at the end of the bond.
bond_orders: What order the bonds are.
bond_is_aromatics: Whether the bonds are aromatic.
"""
atom_name_to_idx = {name: i for i, name in enumerate(atom_names)}
for begin, end, bond_type, is_aromatic in zip(
bond_begins, bond_ends, bond_orders, bond_is_aromatics, strict=True
):
begin_name, end_name = atom_name_to_idx[begin], atom_name_to_idx[end]
bond_idx = mol.AddBond(begin_name, end_name, bond_type)
mol.GetBondWithIdx(bond_idx - 1).SetIsAromatic(is_aromatic)
def sanitize_mol(mol, sort_alphabetically, remove_hydrogens) -> rd_chem.Mol:
# https://www.rdkit.org/docs/source/rdkit.Chem.rdmolops.html#rdkit.Chem.rdmolops.SanitizeMol
# Kekulize, check valencies, set aromaticity, conjugation and hybridization.
# This can repair e.g. incorrect aromatic flags.
rd_chem.SanitizeMol(mol)
if sort_alphabetically:
mol = sort_atoms_by_name(mol)
if remove_hydrogens:
mol = rd_chem.RemoveHs(mol)
return mol
def _add_conformer_to_mol(mol, conformer, force_parse) -> rd_chem.Mol:
# Create conformer and use it to assign stereochemistry.
if conformer is not None:
try:
mol.AddConformer(conformer)
rd_chem.AssignStereochemistryFrom3D(mol)
except ValueError as e:
logging.warning('Failed to parse conformer: %s', e)
if not force_parse:
raise
def mol_from_ccd_cif(
mol_cif: cif_dict.CifDict,
*,
force_parse: bool = False,
sort_alphabetically: bool = True,
remove_hydrogens: bool = True,
implicit_hydrogens: bool = False,
) -> rd_chem.Mol:
"""Creates an rdkit Mol object from a CCD mmcif data block.
The atoms are renumbered so that their names are in alphabetical order and
these names are placed on the atoms under property 'atom_name'.
Only hydrogens which are not required to define the molecule are removed.
For example, hydrogens that define stereochemistry around a double bond are
retained.
See this link for more details.
https://www.rdkit.org/docs/source/rdkit.Chem.rdmolops.html#rdkit.Chem.rdmolops.RemoveHs
Args:
mol_cif: An mmcif object representing a molecule.
force_parse: If True, assumes missing aromatic flags are false, substitutes
deuterium for hydrogen, assumes missing charges are 0 and ignores missing
conformer / stereochemistry information.
sort_alphabetically: True: sort atom alphabetically; False: keep CCD order
remove_hydrogens: if True, remove non-important hydrogens
implicit_hydrogens: Sets a marker on the atom that allows implicit Hs.
Returns:
An rdkit molecule, with the atoms sorted by name.
Raises:
MolToMmcifError: If conversion from mmcif to rdkit Mol fails. More detailed
error is available as this error's cause.
"""
# Read data fields.
try:
atom_names, atom_types, atom_charges, atom_leaving_flags = parse_atom_data(
mol_cif, force_parse
)
bond_begins, bond_ends, bond_orders, bond_is_aromatics = parse_bond_data(
mol_cif, force_parse
)
lig_name = mol_cif['_chem_comp.id'][0].rjust(3)
except (KeyError, ValueError) as e:
raise MolFromMmcifError from e
# Build Rdkit molecule.
mol = rd_chem.RWMol()
# Per atom features.
try:
_populate_atoms_in_mol(
mol=mol,
atom_names=atom_names,
atom_types=atom_types,
atom_charges=atom_charges,
implicit_hydrogens=implicit_hydrogens,
ligand_name=lig_name,
atom_leaving_flags=atom_leaving_flags,
)
except (ValueError, RuntimeError) as e:
raise MolFromMmcifError from e
_populate_bonds_in_mol(
mol, atom_names, bond_begins, bond_ends, bond_orders, bond_is_aromatics
)
try:
conformer = _parse_ideal_conformer(mol_cif)
except (KeyError, ValueError) as e:
logging.warning('Failed to parse ideal conformer: %s', e)
if not force_parse:
raise MolFromMmcifError from e
conformer = None
mol.UpdatePropertyCache(strict=False)
try:
_add_conformer_to_mol(mol, conformer, force_parse)
mol = sanitize_mol(mol, sort_alphabetically, remove_hydrogens)
except (
ValueError,
rd_chem.KekulizeException,
rd_chem.AtomValenceException,
) as e:
raise MolFromMmcifError from e
return mol
def mol_to_ccd_cif(
mol: rd_chem.Mol,
component_id: str,
pdbx_smiles: str | None = None,
include_hydrogens: bool = True,
) -> cif_dict.CifDict:
"""Creates a CCD-like mmcif data block from an rdkit Mol object.
Only a subset of associated mmcif fields is populated, but that is
sufficient for further usage, e.g. in featurization code.
Atom names can be specified via `atom_name` property. For atoms with
unspecified value of that property, the name is assigned based on element type
and the order in the Mol object.
If the Mol object has associated conformers, atom positions from the first of
them will be populated in the resulting mmcif file.
Args:
mol: An rdkit molecule.
component_id: Name of the molecule to use in the resulting mmcif. That is
equivalent to CCD code.
pdbx_smiles: If specified, the value will be used to populate
`_chem_comp.pdbx_smiles`.
include_hydrogens: Whether to include atom and bond data involving
hydrogens.
Returns:
An mmcif data block corresponding for the given rdkit molecule.
Raises:
UnsupportedMolBond: When a molecule contains a bond that can't be
represented with mmcif.
"""
mol = rd_chem.Mol(mol)
if include_hydrogens:
mol = rd_chem.AddHs(mol)
rd_chem.Kekulize(mol)
if mol.GetNumConformers() > 0:
ideal_conformer = mol.GetConformer(0).GetPositions()
ideal_conformer = np.vectorize(lambda x: f'{x:.3f}')(ideal_conformer)
else:
# No data will be populated in the resulting mmcif if the molecule doesn't
# have any conformers attached to it.
ideal_conformer = None
mol_cif = collections.defaultdict(list)
mol_cif['data_'] = [component_id]
mol_cif['_chem_comp.id'] = [component_id]
if pdbx_smiles:
mol_cif['_chem_comp.pdbx_smiles'] = [pdbx_smiles]
mol = assign_atom_names_from_graph(mol, keep_existing_names=True)
for atom_idx, atom in enumerate(mol.GetAtoms()):
element = atom.GetSymbol()
if not include_hydrogens and element in ('H', 'D'):
continue
mol_cif['_chem_comp_atom.comp_id'].append(component_id)
mol_cif['_chem_comp_atom.atom_id'].append(atom.GetProp('atom_name'))
mol_cif['_chem_comp_atom.type_symbol'].append(atom.GetSymbol().upper())
mol_cif['_chem_comp_atom.charge'].append(str(atom.GetFormalCharge()))
if ideal_conformer is not None:
coords = ideal_conformer[atom_idx]
mol_cif['_chem_comp_atom.pdbx_model_Cartn_x_ideal'].append(coords[0])
mol_cif['_chem_comp_atom.pdbx_model_Cartn_y_ideal'].append(coords[1])
mol_cif['_chem_comp_atom.pdbx_model_Cartn_z_ideal'].append(coords[2])
for bond in mol.GetBonds():
atom1 = bond.GetBeginAtom()
atom2 = bond.GetEndAtom()
if not include_hydrogens and (
atom1.GetSymbol() in ('H', 'D') or atom2.GetSymbol() in ('H', 'D')
):
continue
mol_cif['_chem_comp_bond.comp_id'].append(component_id)
mol_cif['_chem_comp_bond.atom_id_1'].append(
bond.GetBeginAtom().GetProp('atom_name')
)
mol_cif['_chem_comp_bond.atom_id_2'].append(
bond.GetEndAtom().GetProp('atom_name')
)
try:
bond_type = bond.GetBondType()
# Older versions of RDKit did not have a DATIVE bond type. Convert it to
# SINGLE to match the AF3 training setup.
if bond_type == rd_chem.BondType.DATIVE:
bond_type = rd_chem.BondType.SINGLE
mol_cif['_chem_comp_bond.value_order'].append(
_RDKIT_BOND_TYPE_TO_MMCIF[bond_type]
)
mol_cif['_chem_comp_bond.pdbx_stereo_config'].append(
_RDKIT_BOND_STEREO_TO_MMCIF[bond.GetStereo()]
)
except KeyError as e:
raise UnsupportedMolBondError from e
mol_cif['_chem_comp_bond.pdbx_aromatic_flag'].append(
'Y' if bond.GetIsAromatic() else 'N'
)
return cif_dict.CifDict(mol_cif)
def _format_atom_name(atom_name: str, atom_type: str) -> str:
"""Formats an atom name to fit in the four characters specified in PDB.
See for example the following note on atom name formatting in PDB files:
https://www.cgl.ucsf.edu/chimera/docs/UsersGuide/tutorials/pdbintro.html#note1
Args:
atom_name: The unformatted atom name.
atom_type: The atom element symbol.
Returns:
formatted_atom_name: The formatted 4-character atom name.
"""
atom_name = atom_name.strip()
atom_type = atom_type.strip().upper()
if len(atom_name) == 1:
return atom_name.rjust(2).ljust(4)
elif len(atom_name) == 2:
if atom_name == atom_type:
return atom_name.ljust(4)
return atom_name.center(4)
elif len(atom_name) == 3:
if atom_name[:2] == atom_type:
return atom_name.ljust(4)
return atom_name.rjust(4)
elif len(atom_name) == 4:
return atom_name
else:
raise ValueError(
f'Atom name `{atom_name}` has more than four characters '
'or is an empty string.'
)
def parse_atom_data(
mol_cif: cif_dict.CifDict | Mapping[str, Sequence[str]], force_parse: bool
) -> tuple[Sequence[str], Sequence[str], Sequence[int], Sequence[str]]:
"""Parses atoms. If force_parse is True, fix deuterium and missing charge."""
atom_types = [t.capitalize() for t in mol_cif['_chem_comp_atom.type_symbol']]
atom_names = mol_cif['_chem_comp_atom.atom_id']
atom_charges = mol_cif['_chem_comp_atom.charge']
atom_leaving_flags = ['?'] * len(atom_names)
if '_chem_comp_atom.pdbx_leaving_atom_flag' in mol_cif:
atom_leaving_flags = mol_cif['_chem_comp_atom.pdbx_leaving_atom_flag']
if force_parse:
# Replace missing charges with 0.
atom_charges = [charge if charge != '?' else '0' for charge in atom_charges]
# Deuterium for hydrogen.
atom_types = [type_ if type_ != 'D' else 'H' for type_ in atom_types]
atom_charges = [int(atom_charge) for atom_charge in atom_charges]
return atom_names, atom_types, atom_charges, atom_leaving_flags
def parse_bond_data(
mol_cif: cif_dict.CifDict | Mapping[str, Sequence[str]], force_parse: bool
) -> tuple[
Sequence[str], Sequence[str], Sequence[rd_chem.BondType], Sequence[bool]
]:
"""Parses bond data. If force_parse is True, ignore missing aromatic flags."""
# The bond table isn't present if there are no bonds. Use [] in that case.
begin_atoms = mol_cif.get('_chem_comp_bond.atom_id_1', [])
end_atoms = mol_cif.get('_chem_comp_bond.atom_id_2', [])
orders = mol_cif.get('_chem_comp_bond.value_order', [])
bond_types = [_RDKIT_MMCIF_TO_BOND_TYPE[order] for order in orders]
try:
aromatic_flags = mol_cif.get('_chem_comp_bond.pdbx_aromatic_flag', [])
is_aromatic = [{'Y': True, 'N': False}[flag] for flag in aromatic_flags]
except KeyError:
if force_parse:
# Set them all to not aromatic.
is_aromatic = [False for _ in begin_atoms]
else:
raise
return begin_atoms, end_atoms, bond_types, is_aromatic
def _parse_ideal_conformer(mol_cif: cif_dict.CifDict) -> rd_chem.Conformer:
"""Builds a conformer containing the ideal coordinates from the CCD.
Args:
mol_cif: An mmcif object representing a molecule.
Returns:
An rdkit conformer filled with the ideal positions from the mmcif.
Raises:
ValueError: if the positions can't be interpreted.
"""
atom_x = [
float(x) for x in mol_cif['_chem_comp_atom.pdbx_model_Cartn_x_ideal']
]
atom_y = [
float(y) for y in mol_cif['_chem_comp_atom.pdbx_model_Cartn_y_ideal']
]
atom_z = [
float(z) for z in mol_cif['_chem_comp_atom.pdbx_model_Cartn_z_ideal']
]
atom_positions = zip(atom_x, atom_y, atom_z, strict=True)
conformer = rd_chem.Conformer(len(atom_x))
for atom_index, atom_position in enumerate(atom_positions):
conformer.SetAtomPosition(atom_index, atom_position)
return conformer
def sort_atoms_by_name(mol: rd_chem.Mol) -> rd_chem.Mol:
"""Sorts the atoms in the molecule by their names."""
atom_names = {
atom.GetProp('atom_name'): atom.GetIdx() for atom in mol.GetAtoms()
}
# Sort the name, int tuples by the names.
sorted_atom_names = sorted(atom_names.items())
# Zip these tuples back together to the sorted indices.
_, new_order = zip(*sorted_atom_names, strict=True)
# Reorder the molecule.
# new_order is effectively an argsort of the names.
return rd_chem.RenumberAtoms(mol, new_order)
def assign_atom_names_from_graph(
mol: rd_chem.Mol,
keep_existing_names: bool = False,
) -> rd_chem.Mol:
"""Assigns atom names from the molecular graph.
The atom name is stored as an atom property 'atom_name', accessible
with atom.GetProp('atom_name'). If the property is already specified, and
keep_existing_names is True we keep the original name.
We traverse the graph in the order of the rdkit atom index and give each atom
a name equal to '{ELEMENT_TYPE}{INDEX}'. E.g. C5 is the name for the fifth
unnamed carbon encountered.
NOTE: A new mol is returned, the original is not changed in place.
Args:
mol: Mol object.
keep_existing_names: If True, atoms that already have the atom_name property
will keep their assigned names.
Returns:
A new mol, with potentially new 'atom_name' properties.
"""
mol = rd_chem.Mol(mol)
specified_atom_names = {
atom.GetProp('atom_name')
for atom in mol.GetAtoms()
if atom.HasProp('atom_name') and keep_existing_names
}
element_counts = collections.Counter()
for atom in mol.GetAtoms():
if not atom.HasProp('atom_name') or not keep_existing_names:
element = atom.GetSymbol()
while True:
element_counts[element] += 1
# Standardize names by using uppercase element type, as in CCD. Only
# effects elements with more than one letter, e.g. 'Cl' becomes 'CL'.
new_name = f'{element.upper()}{element_counts[element]}'
if new_name not in specified_atom_names:
break
atom.SetProp('atom_name', new_name)
return mol
def get_random_conformer(
mol: rd_chem.Mol,
random_seed: int,
max_iterations: int | None,
logging_name: str,
) -> rd_chem.Conformer | None:
"""Stochastic conformer search method using V3 ETK."""
params = rd_all_chem.ETKDGv3()
params.randomSeed = random_seed
if max_iterations is not None: # Override default value.
params.maxIterations = max_iterations
mol_copy = rd_chem.Mol(mol)
try:
conformer_id = rd_all_chem.EmbedMolecule(mol_copy, params)
conformer = mol_copy.GetConformer(conformer_id)
except ValueError:
logging.warning('Failed to generate conformer for: %s', logging_name)
conformer = None
return conformer
|