File size: 37,988 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 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 |
"""Helper functions for different atom layouts and conversion between them."""
import collections
from collections.abc import Mapping, Sequence
import dataclasses
import types
from typing import Any, TypeAlias
from flax_model.alphafold3 import structure
from flax_model.alphafold3.constants import atom_types
from flax_model.alphafold3.constants import chemical_component_sets
from flax_model.alphafold3.constants import chemical_components
from flax_model.alphafold3.constants import mmcif_names
from flax_model.alphafold3.constants import residue_names
from flax_model.alphafold3.data.tools import rdkit_utils
from flax_model.alphafold3.structure import chemical_components as struc_chem_comps
import jax.numpy as jnp
import numpy as np
from rdkit import Chem
xnp_ndarray: TypeAlias = np.ndarray | jnp.ndarray # pylint: disable=invalid-name
NumpyIndex: TypeAlias = Any
@dataclasses.dataclass(frozen=True)
class AtomLayout:
"""Atom layout in a fixed shape (usually 1-dim or 2-dim).
Examples for atom layouts are atom37, atom14, and similar.
All members are np.ndarrays with the same shape, e.g.
- [num_atoms]
- [num_residues, max_atoms_per_residue]
- [num_fragments, max_fragments_per_residue]
All string arrays should have dtype=object to avoid pitfalls with Numpy's
fixed-size strings
Attributes:
atom_name: np.ndarray of str: atom names (e.g. 'CA', 'NE2'), padding
elements have an empty string (''), None or any other value, that maps to
False for .astype(bool). mmCIF field: _atom_site.label_atom_id.
res_id: np.ndarray of int: residue index (usually starting from 1) padding
elements can have an arbitrary value. mmCIF field:
_atom_site.label_seq_id.
chain_id: np.ndarray of str: chain names (e.g. 'A', 'B') padding elements
can have an arbitrary value. mmCIF field: _atom_site.label_seq_id.
atom_element: np.ndarray of str: atom elements (e.g. 'C', 'N', 'O'), padding
elements have an empty string (''), None or any other value, that maps to
False for .astype(bool). mmCIF field: _atom_site.type_symbol.
res_name: np.ndarray of str: residue names (e.g. 'ARG', 'TRP') padding
elements can have an arbitrary value. mmCIF field:
_atom_site.label_comp_id.
chain_type: np.ndarray of str: chain types (e.g. 'polypeptide(L)'). padding
elements can have an arbitrary value. mmCIF field: _entity_poly.type OR
_entity.type (for non-polymers).
shape: shape of the layout (just returns atom_name.shape)
"""
atom_name: np.ndarray
res_id: np.ndarray
chain_id: np.ndarray
atom_element: np.ndarray | None = None
res_name: np.ndarray | None = None
chain_type: np.ndarray | None = None
def __post_init__(self):
"""Assert all arrays have the same shape."""
attribute_names = (
'atom_name',
'atom_element',
'res_name',
'res_id',
'chain_id',
'chain_type',
)
_assert_all_arrays_have_same_shape(
obj=self,
expected_shape=self.atom_name.shape,
attribute_names=attribute_names,
)
# atom_name must have dtype object, such that we can convert it to bool to
# obtain the mask
if self.atom_name.dtype != object:
raise ValueError(
'atom_name must have dtype object, such that it can '
'be converted converted to bool to obtain the mask'
)
def __getitem__(self, key: NumpyIndex) -> 'AtomLayout':
return AtomLayout(
atom_name=self.atom_name[key],
res_id=self.res_id[key],
chain_id=self.chain_id[key],
atom_element=(
self.atom_element[key] if self.atom_element is not None else None
),
res_name=(self.res_name[key] if self.res_name is not None else None),
chain_type=(
self.chain_type[key] if self.chain_type is not None else None
),
)
def __eq__(self, other: 'AtomLayout') -> bool:
if not np.array_equal(self.atom_name, other.atom_name):
return False
mask = self.atom_name.astype(bool)
# Check essential fields.
for field in ('res_id', 'chain_id'):
my_arr = getattr(self, field)
other_arr = getattr(other, field)
if not np.array_equal(my_arr[mask], other_arr[mask]):
return False
# Check optional fields.
for field in ('atom_element', 'res_name', 'chain_type'):
my_arr = getattr(self, field)
other_arr = getattr(other, field)
if (
my_arr is not None
and other_arr is not None
and not np.array_equal(my_arr[mask], other_arr[mask])
):
return False
return True
def copy_and_pad_to(self, shape: tuple[int, ...]) -> 'AtomLayout':
"""Copies and pads the layout to the requested shape.
Args:
shape: new shape for the atom layout
Returns:
a copy of the atom layout padded to the requested shape
Raises:
ValueError: incompatible shapes.
"""
if len(shape) != len(self.atom_name.shape):
raise ValueError(
f'Incompatible shape {shape}. Current layout has shape {self.shape}.'
)
if any(new < old for old, new in zip(self.atom_name.shape, shape)):
raise ValueError(
"Can't pad to a smaller shape. Current layout has shape "
f'{self.shape} and you requested shape {shape}.'
)
pad_width = [
(0, new - old) for old, new in zip(self.atom_name.shape, shape)
]
pad_val = np.array('', dtype=object)
return AtomLayout(
atom_name=np.pad(self.atom_name, pad_width, constant_values=pad_val),
res_id=np.pad(self.res_id, pad_width, constant_values=0),
chain_id=np.pad(self.chain_id, pad_width, constant_values=pad_val),
atom_element=(
np.pad(self.atom_element, pad_width, constant_values=pad_val)
if self.atom_element is not None
else None
),
res_name=(
np.pad(self.res_name, pad_width, constant_values=pad_val)
if self.res_name is not None
else None
),
chain_type=(
np.pad(self.chain_type, pad_width, constant_values=pad_val)
if self.chain_type is not None
else None
),
)
def to_array(self) -> np.ndarray:
"""Stacks the fields to a numpy array with shape (6, <layout_shape>).
Creates a pure numpy array of type `object` by stacking the 6 fields of the
AtomLayout, i.e. (atom_name, atom_element, res_name, res_id, chain_id,
chain_type). This method together with from_array() provides an easy way to
apply pure numpy methods like np.concatenate() to `AtomLayout`s.
Returns:
np.ndarray of object with shape (6, <layout_shape>), e.g.
array([['N', 'CA', 'C', ..., 'CB', 'CG', 'CD'],
['N', 'C', 'C', ..., 'C', 'C', 'C'],
['LEU', 'LEU', 'LEU', ..., 'PRO', 'PRO', 'PRO'],
[1, 1, 1, ..., 403, 403, 403],
['A', 'A', 'A', ..., 'D', 'D', 'D'],
['polypeptide(L)', 'polypeptide(L)', ..., 'polypeptide(L)']],
dtype=object)
"""
if (
self.atom_element is None
or self.res_name is None
or self.chain_type is None
):
raise ValueError('All optional fields need to be present.')
return np.stack(dataclasses.astuple(self), axis=0)
@classmethod
def from_array(cls, arr: np.ndarray) -> 'AtomLayout':
"""Creates an AtomLayout object from a numpy array with shape (6, ...).
see also to_array()
Args:
arr: np.ndarray of object with shape (6, <layout_shape>)
Returns:
AtomLayout object with shape (<layout_shape>)
"""
if arr.shape[0] != 6:
raise ValueError(
'Given array must have shape (6, ...) to match the 6 fields of '
'AtomLayout (atom_name, atom_element, res_name, res_id, chain_id, '
f'chain_type). Your array has {arr.shape=}'
)
return cls(*arr)
@property
def shape(self) -> tuple[int, ...]:
return self.atom_name.shape
@dataclasses.dataclass(frozen=True)
class Residues:
"""List of residues with meta data.
Attributes:
res_name: np.ndarray of str [num_res], e.g. 'ARG', 'TRP'
res_id: np.ndarray of int [num_res]
chain_id: np.ndarray of str [num_res], e.g. 'A', 'B'
chain_type: np.ndarray of str [num_res], e.g. 'polypeptide(L)'
is_start_terminus: np.ndarray of bool [num_res]
is_end_terminus: np.ndarray of bool [num_res]
deprotonation: (optional) np.ndarray of set() [num_res], e.g. {'HD1', 'HE2'}
smiles_string: (optional) np.ndarray of str [num_res], e.g. 'Cc1ccccc1'
shape: shape of the layout (just returns res_name.shape)
"""
res_name: np.ndarray
res_id: np.ndarray
chain_id: np.ndarray
chain_type: np.ndarray
is_start_terminus: np.ndarray
is_end_terminus: np.ndarray
deprotonation: np.ndarray | None = None
smiles_string: np.ndarray | None = None
def __post_init__(self):
"""Assert all arrays are 1D have the same shape."""
attribute_names = (
'res_name',
'res_id',
'chain_id',
'chain_type',
'is_start_terminus',
'is_end_terminus',
'deprotonation',
'smiles_string',
)
_assert_all_arrays_have_same_shape(
obj=self,
expected_shape=(self.res_name.shape[0],),
attribute_names=attribute_names,
)
def __getitem__(self, key: NumpyIndex) -> 'Residues':
return Residues(
res_name=self.res_name[key],
res_id=self.res_id[key],
chain_id=self.chain_id[key],
chain_type=self.chain_type[key],
is_start_terminus=self.is_start_terminus[key],
is_end_terminus=self.is_end_terminus[key],
deprotonation=(
self.deprotonation[key] if self.deprotonation is not None else None
),
smiles_string=(
self.smiles_string[key] if self.smiles_string is not None else None
),
)
def __eq__(self, other: 'Residues') -> bool:
return all(
np.array_equal(getattr(self, field.name), getattr(other, field.name))
for field in dataclasses.fields(self)
)
@property
def shape(self) -> tuple[int, ...]:
return self.res_name.shape
@dataclasses.dataclass(frozen=True)
class GatherInfo:
"""Gather indices to translate from one atom layout to another.
All members are np or jnp ndarray (usually 1-dim or 2-dim) with the same
shape, e.g.
- [num_atoms]
- [num_residues, max_atoms_per_residue]
- [num_fragments, max_fragments_per_residue]
Attributes:
gather_idxs: np or jnp ndarray of int: gather indices into a flattened array
gather_mask: np or jnp ndarray of bool: mask for resulting array
input_shape: np or jnp ndarray of int: the shape of the unflattened input
array
shape: output shape. Just returns gather_idxs.shape
"""
gather_idxs: xnp_ndarray
gather_mask: xnp_ndarray
input_shape: xnp_ndarray
def __post_init__(self):
if self.gather_mask.shape != self.gather_idxs.shape:
raise ValueError(
'All arrays must have the same shape. Got\n'
f'gather_idxs.shape = {self.gather_idxs.shape}\n'
f'gather_mask.shape = {self.gather_mask.shape}\n'
)
def __getitem__(self, key: NumpyIndex) -> 'GatherInfo':
return GatherInfo(
gather_idxs=self.gather_idxs[key],
gather_mask=self.gather_mask[key],
input_shape=self.input_shape,
)
@property
def shape(self) -> tuple[int, ...]:
return self.gather_idxs.shape
def as_np_or_jnp(self, xnp: types.ModuleType) -> 'GatherInfo':
return GatherInfo(
gather_idxs=xnp.array(self.gather_idxs),
gather_mask=xnp.array(self.gather_mask),
input_shape=xnp.array(self.input_shape),
)
def as_dict(
self,
key_prefix: str | None = None,
) -> dict[str, xnp_ndarray]:
prefix = f'{key_prefix}:' if key_prefix else ''
return {
prefix + 'gather_idxs': self.gather_idxs,
prefix + 'gather_mask': self.gather_mask,
prefix + 'input_shape': self.input_shape,
}
@classmethod
def from_dict(
cls,
d: Mapping[str, xnp_ndarray],
key_prefix: str | None = None,
) -> 'GatherInfo':
"""Creates GatherInfo from a given dictionary."""
prefix = f'{key_prefix}:' if key_prefix else ''
return cls(
gather_idxs=d[prefix + 'gather_idxs'],
gather_mask=d[prefix + 'gather_mask'],
input_shape=d[prefix + 'input_shape'],
)
def fill_in_optional_fields(
minimal_atom_layout: AtomLayout,
reference_atoms: AtomLayout,
) -> AtomLayout:
"""Fill in the optional fields (atom_element, res_name, chain_type).
Extracts the optional fields (atom_element, res_name, chain_type) from a
flat reference layout and fills them into the fields from this layout.
Args:
minimal_atom_layout: An AtomLayout that only contains the essential fields
(atom_name, res_id, chain_id).
reference_atoms: A flat layout that contains all fields for all atoms.
Returns:
An AtomLayout that contains all fields.
Raises:
ValueError: Reference atoms layout is not flat.
ValueError: Missing atoms in reference.
"""
if len(reference_atoms.shape) > 1:
raise ValueError('Only flat layouts are supported as reference.')
ref_to_self = compute_gather_idxs(
source_layout=reference_atoms, target_layout=minimal_atom_layout
)
atom_mask = minimal_atom_layout.atom_name.astype(bool)
missing_atoms_mask = atom_mask & ~ref_to_self.gather_mask
if np.any(missing_atoms_mask):
raise ValueError(
f'{np.sum(missing_atoms_mask)} missing atoms in reference: '
f'{minimal_atom_layout[missing_atoms_mask]}'
)
def _convert_str_array(gather: GatherInfo, arr: np.ndarray):
output = arr[gather.gather_idxs]
output[~gather.gather_mask] = ''
return output
return dataclasses.replace(
minimal_atom_layout,
atom_element=_convert_str_array(
ref_to_self, reference_atoms.atom_element
),
res_name=_convert_str_array(ref_to_self, reference_atoms.res_name),
chain_type=_convert_str_array(ref_to_self, reference_atoms.chain_type),
)
def guess_deprotonation(residues: Residues) -> Residues:
"""Convenience function to create a plausible deprotonation field.
Assumes a pH of 7 and always prefers HE2 over HD1 for HIS.
Args:
residues: a Residues object without a depronotation field
Returns:
a Residues object with a depronotation field
"""
num_residues = residues.res_name.shape[0]
deprotonation = np.empty(num_residues, dtype=object)
deprotonation_at_ph7 = {
'ASP': 'HD2',
'GLU': 'HE2',
'HIS': 'HD1',
}
for idx, res_name in enumerate(residues.res_name):
deprotonation[idx] = set()
if res_name in deprotonation_at_ph7:
deprotonation[idx].add(deprotonation_at_ph7[res_name])
if residues.is_end_terminus[idx]:
deprotonation[idx].add('HXT')
return dataclasses.replace(residues, deprotonation=deprotonation)
def atom_layout_from_structure(
struct: structure.Structure,
*,
fix_non_standard_polymer_res: bool = False,
) -> AtomLayout:
"""Extract AtomLayout from a Structure."""
if not fix_non_standard_polymer_res:
return AtomLayout(
atom_name=np.array(struct.atom_name, dtype=object),
atom_element=np.array(struct.atom_element, dtype=object),
res_name=np.array(struct.res_name, dtype=object),
res_id=np.array(struct.res_id, dtype=int),
chain_id=np.array(struct.chain_id, dtype=object),
chain_type=np.array(struct.chain_type, dtype=object),
)
# Target lists.
target_atom_names = []
target_atom_elements = []
target_res_ids = []
target_res_names = []
target_chain_ids = []
target_chain_types = []
for atom in struct.iter_atoms():
target_atom_names.append(atom['atom_name'])
target_atom_elements.append(atom['atom_element'])
target_res_ids.append(atom['res_id'])
target_chain_ids.append(atom['chain_id'])
target_chain_types.append(atom['chain_type'])
if mmcif_names.is_standard_polymer_type(atom['chain_type']):
fixed_res_name = mmcif_names.fix_non_standard_polymer_res(
res_name=atom['res_name'], chain_type=atom['chain_type']
)
target_res_names.append(fixed_res_name)
else:
target_res_names.append(atom['res_name'])
return AtomLayout(
atom_name=np.array(target_atom_names, dtype=object),
atom_element=np.array(target_atom_elements, dtype=object),
res_name=np.array(target_res_names, dtype=object),
res_id=np.array(target_res_ids, dtype=int),
chain_id=np.array(target_chain_ids, dtype=object),
chain_type=np.array(target_chain_types, dtype=object),
)
def residues_from_structure(
struct: structure.Structure,
*,
include_missing_residues: bool = True,
fix_non_standard_polymer_res: bool = False,
) -> Residues:
"""Create a Residues object from a Structure object."""
def _get_smiles(res_name):
"""Get SMILES string from chemical components."""
smiles = None
if (
struct.chemical_components_data is not None
and struct.chemical_components_data.chem_comp is not None
and struct.chemical_components_data.chem_comp.get(res_name)
):
smiles = struct.chemical_components_data.chem_comp[res_name].pdbx_smiles
return smiles
res_names_per_chain = struct.chain_res_name_sequence(
include_missing_residues=include_missing_residues,
fix_non_standard_polymer_res=fix_non_standard_polymer_res,
)
res_name = []
res_id = []
chain_id = []
chain_type = []
smiles = []
is_start_terminus = []
for c in struct.iter_chains():
if include_missing_residues:
this_res_ids = [id for (_, id) in struct.all_residues[c['chain_id']]]
else:
this_res_ids = [
r['res_id']
for r in struct.iter_residues()
if r['chain_id'] == c['chain_id']
]
fixed_res_names = res_names_per_chain[c['chain_id']]
assert len(this_res_ids) == len(
fixed_res_names
), f'{len(this_res_ids)} != {len(fixed_res_names)}'
this_start_res_id = min(min(this_res_ids), 1)
this_is_start_terminus = [r == this_start_res_id for r in this_res_ids]
smiles.extend([_get_smiles(res_name) for res_name in fixed_res_names])
num_res = len(fixed_res_names)
res_name.extend(fixed_res_names)
res_id.extend(this_res_ids)
chain_id.extend([c['chain_id']] * num_res)
chain_type.extend([c['chain_type']] * num_res)
is_start_terminus.extend(this_is_start_terminus)
res_name = np.array(res_name, dtype=object)
res_id = np.array(res_id, dtype=int)
chain_id = np.array(chain_id, dtype=object)
chain_type = np.array(chain_type, dtype=object)
smiles = np.array(smiles, dtype=object)
is_start_terminus = np.array(is_start_terminus, dtype=bool)
res_uid_to_idx = {
uid: idx for idx, uid in enumerate(zip(chain_id, res_id, strict=True))
}
# Start terminus indicates whether residue index is 1 and chain is polymer.
is_polymer = np.isin(chain_type, tuple(mmcif_names.POLYMER_CHAIN_TYPES))
is_start_terminus = is_start_terminus & is_polymer
# Start also indicates whether amino acid is attached to H2 or proline to H.
start_terminus_atom_index = np.nonzero(
(struct.chain_type == mmcif_names.PROTEIN_CHAIN)
& (
(struct.atom_name == 'H2')
| ((struct.atom_name == 'H') & (struct.res_name == 'PRO'))
)
)[0]
# Translate atom idx to residue idx to assign start terminus.
for atom_idx in start_terminus_atom_index:
res_uid = (struct.chain_id[atom_idx], struct.res_id[atom_idx])
res_idx = res_uid_to_idx[res_uid]
is_start_terminus[res_idx] = True
# Infer end terminus: Check for OXT, or in case of
# include_missing_residues==True for the last residue of the chain.
num_all_residues = res_name.shape[0]
is_end_terminus = np.zeros(num_all_residues, dtype=bool)
end_term_atom_idxs = np.nonzero(struct.atom_name == 'OXT')[0]
for atom_idx in end_term_atom_idxs:
res_uid = (struct.chain_id[atom_idx], struct.res_id[atom_idx])
res_idx = res_uid_to_idx[res_uid]
is_end_terminus[res_idx] = True
if include_missing_residues:
for idx in range(num_all_residues - 1):
if is_polymer[idx] and chain_id[idx] != chain_id[idx + 1]:
is_end_terminus[idx] = True
if (num_all_residues > 0) and is_polymer[-1]:
is_end_terminus[-1] = True
# Infer (de-)protonation: Only if hydrogens are given.
num_hydrogens = np.sum(
(struct.atom_element == 'H') & (struct.chain_type == 'polypeptide(L)')
)
if num_hydrogens > 0:
deprotonation = np.empty(num_all_residues, dtype=object)
all_atom_uids = set(
zip(struct.chain_id, struct.res_id, struct.atom_name, strict=True)
)
for idx in range(num_all_residues):
deprotonation[idx] = set()
check_hydrogens = set()
if is_end_terminus[idx]:
check_hydrogens.add('HXT')
if res_name[idx] in atom_types.PROTONATION_HYDROGENS:
check_hydrogens.update(atom_types.PROTONATION_HYDROGENS[res_name[idx]])
for hydrogen in check_hydrogens:
if (chain_id[idx], res_id[idx], hydrogen) not in all_atom_uids:
deprotonation[idx].add(hydrogen)
else:
deprotonation = None
return Residues(
res_name=res_name,
res_id=res_id,
chain_id=chain_id,
chain_type=chain_type,
is_start_terminus=is_start_terminus.astype(bool),
is_end_terminus=is_end_terminus,
deprotonation=deprotonation,
smiles_string=smiles,
)
def get_link_drop_atoms(
res_name: str,
chain_type: str,
*,
is_start_terminus: bool,
is_end_terminus: bool,
bonded_atoms: set[str],
drop_ligand_leaving_atoms: bool = False,
) -> set[str]:
"""Returns set of atoms that are dropped when this res_name gets linked.
Args:
res_name: residue name, e.g. 'ARG'
chain_type: chain_type, e.g. 'polypeptide(L)'
is_start_terminus: whether the residue is the n-terminus
is_end_terminus: whether the residue is the c-terminus
bonded_atoms: Names of atoms coming off this residue.
drop_ligand_leaving_atoms: Flag to switch on/off leaving atoms for ligands.
Returns:
Set of atoms that are dropped when this amino acid gets linked.
"""
drop_atoms = set()
if chain_type == mmcif_names.PROTEIN_CHAIN:
if res_name == 'PRO':
if not is_start_terminus:
drop_atoms.update({'H', 'H2', 'H3'})
if not is_end_terminus:
drop_atoms.update({'OXT', 'HXT'})
else:
if not is_start_terminus:
drop_atoms.update({'H2', 'H3'})
if not is_end_terminus:
drop_atoms.update({'OXT', 'HXT'})
elif chain_type in mmcif_names.NUCLEIC_ACID_CHAIN_TYPES:
if not is_start_terminus:
drop_atoms.update({'OP3'})
elif (
drop_ligand_leaving_atoms and chain_type in mmcif_names.LIGAND_CHAIN_TYPES
):
if res_name in {
*chemical_component_sets.GLYCAN_OTHER_LIGANDS,
*chemical_component_sets.GLYCAN_LINKING_LIGANDS,
}:
if 'O1' not in bonded_atoms:
drop_atoms.update({'O1'})
return drop_atoms
def get_bonded_atoms(
polymer_ligand_bonds: AtomLayout,
ligand_ligand_bonds: AtomLayout,
res_id: int,
chain_id: str,
) -> set[str]:
"""Finds the res_name on the opposite end of the bond, if a bond exists.
Args:
polymer_ligand_bonds: Bond information for polymer-ligand pairs.
ligand_ligand_bonds: Bond information for ligand-ligand pairs.
res_id: residue id in question.
chain_id: chain id of residue in question.
Returns:
res_name of bonded atom.
"""
bonded_atoms = set()
if polymer_ligand_bonds:
# Filter before searching to speed this up.
bond_idx = np.logical_and(
polymer_ligand_bonds.res_id == res_id,
polymer_ligand_bonds.chain_id == chain_id,
).any(axis=1)
relevant_polymer_bonds = polymer_ligand_bonds[bond_idx]
for atom_names, res_ids, chain_ids in zip(
relevant_polymer_bonds.atom_name,
relevant_polymer_bonds.res_id,
relevant_polymer_bonds.chain_id,
):
if (res_ids[0], chain_ids[0]) == (res_id, chain_id):
bonded_atoms.add(atom_names[0])
elif (res_ids[1], chain_ids[1]) == (res_id, chain_id):
bonded_atoms.add(atom_names[1])
if ligand_ligand_bonds:
bond_idx = np.logical_and(
ligand_ligand_bonds.res_id == res_id,
ligand_ligand_bonds.chain_id == chain_id,
).any(axis=1)
relevant_ligand_bonds = ligand_ligand_bonds[bond_idx]
for atom_names, res_ids, chain_ids in zip(
relevant_ligand_bonds.atom_name,
relevant_ligand_bonds.res_id,
relevant_ligand_bonds.chain_id,
):
if (res_ids[0], chain_ids[0]) == (res_id, chain_id):
bonded_atoms.add(atom_names[0])
elif (res_ids[1], chain_ids[1]) == (res_id, chain_id):
bonded_atoms.add(atom_names[1])
return bonded_atoms
def make_flat_atom_layout(
residues: Residues,
ccd: chemical_components.Ccd,
polymer_ligand_bonds: AtomLayout | None = None,
ligand_ligand_bonds: AtomLayout | None = None,
*,
with_hydrogens: bool = False,
skip_unk_residues: bool = True,
drop_ligand_leaving_atoms: bool = False,
) -> AtomLayout:
"""Make a flat atom layout for given residues.
Create a flat layout from a `Residues` object. The required atoms for each
amino acid type are taken from the CCD, hydrogens and oxygens are dropped to
make the linked residues. Terminal OXT's and protonation state for the
hydrogens come from the `Residues` object.
Args:
residues: a `Residues` object.
ccd: The chemical components dictionary.
polymer_ligand_bonds: Bond information for polymer-ligand pairs.
ligand_ligand_bonds: Bond information for ligand-ligand pairs.
with_hydrogens: whether to create hydrogens
skip_unk_residues: whether to skip 'UNK' resides -- default is True to be
compatible with the rest of AlphaFold that does not predict atoms for
unknown residues
drop_ligand_leaving_atoms: Flag to switch on/ off leaving atoms for ligands.
Returns:
an `AtomLayout` object
"""
num_res = residues.res_name.shape[0]
# Target lists.
target_atom_names = []
target_atom_elements = []
target_res_ids = []
target_res_names = []
target_chain_ids = []
target_chain_types = []
for idx in range(num_res):
# skip 'UNK' residues if requested
if (
skip_unk_residues
and residues.res_name[idx] in residue_names.UNKNOWN_TYPES
):
continue
# Get the atoms for this residue type from CCD.
if ccd.get(residues.res_name[idx]):
res_atoms = struc_chem_comps.get_all_atoms_in_entry(
ccd=ccd, res_name=residues.res_name[idx]
)
atom_names_elements = list(
zip(
res_atoms['_chem_comp_atom.atom_id'],
res_atoms['_chem_comp_atom.type_symbol'],
strict=True,
)
)
elif residues.smiles_string[idx]:
# Get atoms from RDKit via SMILES.
mol = Chem.MolFromSmiles(residues.smiles_string[idx])
if mol is None:
raise ValueError(
f'Failed to construct RDKit Mol for {residues.res_name[idx]} from'
f' SMILES string: {residues.smiles_string[idx]} . This is likely'
' due to an issue with the SMILES string. Note that the userCCD'
' input format provides an alternative way to define custom'
' molecules directly without RDKit or SMILES.'
)
mol = rdkit_utils.assign_atom_names_from_graph(mol)
atom_names_elements = [
(a.GetProp('atom_name'), a.GetSymbol()) for a in mol.GetAtoms()
]
else:
raise ValueError(
f'{residues.res_name[idx]} not found in CCD and no SMILES string'
)
# Remove hydrogens if requested.
if not with_hydrogens:
atom_names_elements = [
(n, e) for n, e in atom_names_elements if (e != 'H' and e != 'D')
]
bonded_atoms = get_bonded_atoms(
polymer_ligand_bonds,
ligand_ligand_bonds,
residues.res_id[idx],
residues.chain_id[idx],
)
# Connect the amino-acids, i.e. remove OXT, HXT and H2.
drop_atoms = get_link_drop_atoms(
res_name=residues.res_name[idx],
chain_type=residues.chain_type[idx],
is_start_terminus=residues.is_start_terminus[idx],
is_end_terminus=residues.is_end_terminus[idx],
bonded_atoms=bonded_atoms,
drop_ligand_leaving_atoms=drop_ligand_leaving_atoms,
)
# If deprotonation info is available, remove the specific atoms.
if residues.deprotonation is not None:
drop_atoms.update(residues.deprotonation[idx])
atom_names_elements = [
(n, e) for n, e in atom_names_elements if n not in drop_atoms
]
# Append the found atoms to the target lists.
target_atom_names.extend([n for n, _ in atom_names_elements])
target_atom_elements.extend([e for _, e in atom_names_elements])
num_atoms = len(atom_names_elements)
target_res_names.extend([residues.res_name[idx]] * num_atoms)
target_res_ids.extend([residues.res_id[idx]] * num_atoms)
target_chain_ids.extend([residues.chain_id[idx]] * num_atoms)
target_chain_types.extend([residues.chain_type[idx]] * num_atoms)
return AtomLayout(
atom_name=np.array(target_atom_names, dtype=object),
atom_element=np.array(target_atom_elements, dtype=object),
res_name=np.array(target_res_names, dtype=object),
res_id=np.array(target_res_ids, dtype=int),
chain_id=np.array(target_chain_ids, dtype=object),
chain_type=np.array(target_chain_types, dtype=object),
)
def compute_gather_idxs(
*,
source_layout: AtomLayout,
target_layout: AtomLayout,
fill_value: int = 0,
) -> GatherInfo:
"""Produce gather indices and mask to convert from source layout to target."""
source_uid_to_idx = {
uid: idx
for idx, uid in enumerate(
zip(
source_layout.chain_id.ravel(),
source_layout.res_id.ravel(),
source_layout.atom_name.ravel(),
strict=True,
)
)
}
gather_idxs = []
gather_mask = []
for uid in zip(
target_layout.chain_id.ravel(),
target_layout.res_id.ravel(),
target_layout.atom_name.ravel(),
strict=True,
):
if uid in source_uid_to_idx:
gather_idxs.append(source_uid_to_idx[uid])
gather_mask.append(True)
else:
gather_idxs.append(fill_value)
gather_mask.append(False)
target_shape = target_layout.atom_name.shape
return GatherInfo(
gather_idxs=np.array(gather_idxs, dtype=int).reshape(target_shape),
gather_mask=np.array(gather_mask, dtype=bool).reshape(target_shape),
input_shape=np.array(source_layout.atom_name.shape),
)
def convert(
gather_info: GatherInfo,
arr: xnp_ndarray,
*,
layout_axes: tuple[int, ...] = (0,),
) -> xnp_ndarray:
"""Convert an array from one atom layout to another."""
# Translate negative indices to the corresponding positives.
layout_axes = tuple(i if i >= 0 else i + arr.ndim for i in layout_axes)
# Ensure that layout_axes are continuous.
layout_axes_begin = layout_axes[0]
layout_axes_end = layout_axes[-1] + 1
if layout_axes != tuple(range(layout_axes_begin, layout_axes_end)):
raise ValueError(f'layout_axes must be continuous. Got {layout_axes}.')
layout_shape = arr.shape[layout_axes_begin:layout_axes_end]
# Ensure that the layout shape is compatible
# with the gather_info. I.e. the first axis size must be equal or greater
# than the gather_info.input_shape, and all subsequent axes sizes must match.
if (len(layout_shape) != gather_info.input_shape.size) or (
isinstance(gather_info.input_shape, np.ndarray)
and (
(layout_shape[0] < gather_info.input_shape[0])
or (np.any(layout_shape[1:] != gather_info.input_shape[1:]))
)
):
raise ValueError(
'Input array layout axes are incompatible. You specified layout '
f'axes {layout_axes} with an input array of shape {arr.shape}, but '
f'the gather info expects shape {gather_info.input_shape}. '
'Your first axis size must be equal or greater than the '
'gather_info.input_shape, and all subsequent axes sizes must '
'match.'
)
# Compute the shape of the input array with flattened layout.
batch_shape = arr.shape[:layout_axes_begin]
features_shape = arr.shape[layout_axes_end:]
arr_flattened_shape = batch_shape + (np.prod(layout_shape),) + features_shape
# Flatten input array and perform the gather.
arr_flattened = arr.reshape(arr_flattened_shape)
if layout_axes_begin == 0:
out_arr = arr_flattened[gather_info.gather_idxs, ...]
elif layout_axes_begin == 1:
out_arr = arr_flattened[:, gather_info.gather_idxs, ...]
elif layout_axes_begin == 2:
out_arr = arr_flattened[:, :, gather_info.gather_idxs, ...]
elif layout_axes_begin == 3:
out_arr = arr_flattened[:, :, :, gather_info.gather_idxs, ...]
elif layout_axes_begin == 4:
out_arr = arr_flattened[:, :, :, :, gather_info.gather_idxs, ...]
else:
raise ValueError(
'Only 4 batch axes supported. If you need more, the code '
'is easy to extend.'
)
# Broadcast the mask and apply it.
broadcasted_mask_shape = (
(1,) * len(batch_shape)
+ gather_info.gather_mask.shape
+ (1,) * len(features_shape)
)
out_arr *= gather_info.gather_mask.reshape(broadcasted_mask_shape)
return out_arr
def make_structure(
flat_layout: AtomLayout,
atom_coords: np.ndarray,
name: str,
*,
atom_b_factors: np.ndarray | None = None,
all_physical_residues: Residues | None = None,
) -> structure.Structure:
"""Returns a Structure from a flat layout and atom coordinates.
The provided flat_layout must be 1-dim and must not contain any padding
elements. The flat_layout.atom_name must conform to the OpenMM/CCD standard
and must not contain deuterium.
Args:
flat_layout: flat 1-dim AtomLayout without pading elements
atom_coords: np.ndarray of float, shape (num_atoms, 3)
name: str: the name (usually PDB id), e.g. '1uao'
atom_b_factors: np.ndarray of float, shape (num_atoms,) or None. If None,
they will be set to all zeros.
all_physical_residues: a Residues object that contains all physically
existing residues, i.e. also those residues that have no resolved atoms.
This is common in experimental structures, but also appears in predicted
structures for 'UNK' or other non-standard residue types, where the model
does not predict coordinates. This will be used to create the
`all_residues` field of the structure object.
"""
if flat_layout.atom_name.ndim != 1 or not np.all(
flat_layout.atom_name.astype(bool)
):
raise ValueError(
'flat_layout must be 1-dim and must not contain anypadding element'
)
if (
flat_layout.atom_element is None
or flat_layout.res_name is None
or flat_layout.chain_type is None
):
raise ValueError('All optional fields must be present.')
if atom_b_factors is None:
atom_b_factors = np.zeros(atom_coords.shape[:-1])
if all_physical_residues is not None:
# Create the all_residues field from a Residues object
# (unfortunately there is no central place to keep the chain_types in
# the structure class, so we drop it here)
all_residues = collections.defaultdict(list)
for chain_id, res_id, res_name in zip(
all_physical_residues.chain_id,
all_physical_residues.res_id,
all_physical_residues.res_name,
strict=True,
):
all_residues[chain_id].append((res_name, res_id))
else:
# Create the all_residues field from the flat_layout
all_residues = collections.defaultdict(list)
if flat_layout.chain_id.shape[0] > 0:
all_residues[flat_layout.chain_id[0]].append(
(flat_layout.res_name[0], flat_layout.res_id[0])
)
for i in range(1, flat_layout.shape[0]):
if (
flat_layout.chain_id[i] != flat_layout.chain_id[i - 1]
or flat_layout.res_name[i] != flat_layout.res_name[i - 1]
or flat_layout.res_id[i] != flat_layout.res_id[i - 1]
):
all_residues[flat_layout.chain_id[i]].append(
(flat_layout.res_name[i], flat_layout.res_id[i])
)
return structure.from_atom_arrays(
name=name,
all_residues=dict(all_residues),
chain_id=flat_layout.chain_id,
chain_type=flat_layout.chain_type,
res_id=flat_layout.res_id.astype(np.int32),
res_name=flat_layout.res_name,
atom_name=flat_layout.atom_name,
atom_element=flat_layout.atom_element,
atom_x=atom_coords[..., 0],
atom_y=atom_coords[..., 1],
atom_z=atom_coords[..., 2],
atom_b_factor=atom_b_factors,
)
def _assert_all_arrays_have_same_shape(
*,
obj: AtomLayout | Residues | GatherInfo,
expected_shape: tuple[int, ...],
attribute_names: Sequence[str],
) -> None:
"""Checks that given attributes of the object have the expected shape."""
attribute_shapes_description = []
all_shapes_are_valid = True
for attribute_name in attribute_names:
attribute = getattr(obj, attribute_name)
if attribute is None:
attribute_shape = None
else:
attribute_shape = attribute.shape
if attribute_shape is not None and expected_shape != attribute_shape:
all_shapes_are_valid = False
attribute_shape_name = attribute_name + '.shape'
attribute_shapes_description.append(
f'{attribute_shape_name:25} = {attribute_shape}'
)
if not all_shapes_are_valid:
raise ValueError(
f'All arrays must have the same shape ({expected_shape=}). Got\n'
+ '\n'.join(attribute_shapes_description)
)
|