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
|
"""Classes to extract metadata from various input files.
Often input files contain metadata that would be useful to include in
the mmCIF file, but the metadata is stored in a different way for each
domain-specific file type. For example, MRC files used for electron
microscopy maps may contain an EMDB identifier, which the mmCIF file
can point to in preference to the local file.
This module provides classes for each file type to extract suitable
metadata where available.
"""
import ihm
from . import location, dataset, startmodel, util
from .startmodel import SequenceIdentityDenominator
import ihm.source
import ihm.citations
import ihm.reader
import ihm.format
import ihm.format_bcif
import operator
import struct
import json
import string
import warnings
import re
import collections
import urllib.request
import urllib.error
def _get_modeller(version, date):
return ihm.Software(
name='MODELLER', classification='comparative modeling',
description='Comparative modeling by satisfaction '
'of spatial restraints, build ' + date,
location='https://salilab.org/modeller/',
version=version,
citation=ihm.citations.modeller)
ModellerTemplate = collections.namedtuple(
'ModellerTemplate', ['name', 'template_begin', 'template_chain',
'template_end', 'target_begin', 'target_chain',
'target_end', 'pct_seq_id'])
def _handle_modeller_template(info, template_path_map, target_dataset,
alnfile):
"""Create a Template object from Modeller PDB header information."""
template_seq_id_range = (int(info.template_begin),
int(info.template_end))
seq_id_range = (int(info.target_begin), int(info.target_end))
sequence_identity = startmodel.SequenceIdentity(
float(info.pct_seq_id), SequenceIdentityDenominator.SHORTER_LENGTH)
# Assume a code of 1abc, 1abc_N, 1abcX, or 1abcX_N refers
# to a real PDB structure
m = re.match(r'(\d[a-zA-Z0-9]{3})[a-zA-Z]?(_.*)?$', info.name)
if m:
template_db_code = m.group(1).upper()
loc = location.PDBLocation(template_db_code)
else:
# Otherwise, look up the PDB file in TEMPLATE PATH remarks
fname = template_path_map[info.name]
loc = location.InputFileLocation(
fname, details="Template for comparative modeling")
d = dataset.PDBDataset(loc, details=loc.details)
# Make the comparative model dataset derive from the template's
target_dataset.parents.append(d)
return (info.target_chain,
startmodel.Template(
dataset=d, asym_id=info.template_chain,
seq_id_range=seq_id_range,
template_seq_id_range=template_seq_id_range,
sequence_identity=sequence_identity,
alignment_file=alnfile))
class Parser:
"""Base class for all metadata parsers."""
def parse_file(self, filename):
"""Extract metadata from the given file.
:param str filename: the file to extract metadata from.
:return: a dict with extracted metadata (generally including
a :class:`~ihm.dataset.Dataset`)."""
pass
class MRCParser(Parser):
"""Extract metadata from an EM density map (MRC file)."""
def parse_file(self, filename):
"""Extract metadata. See :meth:`Parser.parse_file` for details.
:return: a dict with key `dataset` pointing to the density map,
as an EMDB entry if the file contains EMDB headers,
otherwise to the file itself.
If the file turns out to be an EMDB entry, this will also query
the EMDB web API (if available) to extract version information
and details for the dataset.
"""
emdb = self._get_emdb(filename)
if emdb:
loc = _ParsedEMDBLocation(emdb)
else:
loc = location.InputFileLocation(
filename, details="Electron microscopy density map")
return {'dataset': dataset.EMDensityDataset(loc)}
def _get_emdb(self, filename):
"""Return the EMDB id of the file, or None."""
r = re.compile(b'EMDATABANK\\.org.*(EMD\\-\\d+)')
with open(filename, 'rb') as fh:
fh.seek(220) # Offset of number of labels
num_labels_raw = fh.read(4)
# Number of labels in MRC is usually a very small number, so it's
# very likely to be the smaller of the big-endian and little-endian
# interpretations of this field
num_labels_big, = struct.unpack_from('>i', num_labels_raw)
num_labels_little, = struct.unpack_from('<i', num_labels_raw)
num_labels = min(num_labels_big, num_labels_little)
for i in range(num_labels):
label = fh.read(80).strip()
m = r.search(label)
if m:
return m.group(1).decode('ascii')
class _ParsedEMDBLocation(location.EMDBLocation):
"""Like an EMDBLocation, but looks up version and details from EMDB
when they are requested (unless they are set to other values)."""
def __init__(self, emdb):
self.__emdb_info = None
super().__init__(db_code=emdb, version=None, details=None)
self.__emdb_info = None
def __get_version(self):
self._get_emdb_info()
return self.__emdb_info[0]
def __set_version(self, val):
if self.__emdb_info is None:
self.__emdb_info = [None, None]
self.__emdb_info[0] = val
def __get_details(self):
self._get_emdb_info()
return self.__emdb_info[1] or "Electron microscopy density map"
def __set_details(self, val):
if self.__emdb_info is None:
self.__emdb_info = [None, None]
self.__emdb_info[1] = val
def _get_emdb_info(self):
"""Query EMDB API and get version & details of a given entry"""
if self.__emdb_info is not None:
return
req = urllib.request.Request(
'https://www.ebi.ac.uk/emdb/api/entry/admin/%s'
% self.access_code, None, {})
try:
response = urllib.request.urlopen(req, timeout=10)
except urllib.error.URLError as err:
warnings.warn("EMDB API query failed; using default metadata "
"for MRC file; %s" % str(err))
self.__emdb_info = [None, None]
return
contents = json.load(response)
info = contents['admin']
self.__emdb_info = [info['key_dates']['map_release'], info['title']]
version = property(__get_version, __set_version)
details = property(__get_details, __set_details)
def _get_swiss_model_metadata(filename):
"""Extract and return metadata from SWISS-MODEL PDB REMARK headers"""
meta = {}
with open(filename) as fh:
in_header = None
for line in fh:
if line.startswith('ATOM'):
break
if line.startswith('REMARK 3 '):
if line.startswith('REMARK 3 MODEL INFORMATION'):
in_header = {}
meta['info'] = in_header
elif line.startswith('REMARK 3 TEMPLATE'):
in_header = {}
meta[line[11:].rstrip('\r\n ')] = in_header
elif in_header is not None:
linedata = line[11:].rstrip('\r\n ')
if linedata:
key, val = linedata.split(None, 1)
if key == 'ALN':
chain, tpltgt, seq = val.split()
key = (chain, tpltgt)
in_header[key] = in_header.get(key, '') + seq
elif key in ('CHAIN', 'MMCIF', 'LIGND'):
in_header.setdefault(key, []).append(val)
else:
in_header[key] = val
return meta
def _parse_seq(seq):
"""Get a primary sequence and its length (without gaps)"""
return seq, len(seq.replace('-', ''))
def _get_aligned_region(tgt_seq, tmpl_seq):
"""Given two primary sequences, return the range of each that is
aligned (i.e. from the first aligned residue in both sequences to
the last)"""
first = True
tgt_pos = 0
tmpl_pos = 0
start_align = end_align = None
for tgt, tmpl in zip(tgt_seq, tmpl_seq):
if tgt != '-':
tgt_pos += 1
if tmpl != '-':
tmpl_pos += 1
if tgt != '-':
end_align = (tgt_pos, tmpl_pos)
if first:
start_align = end_align
first = False
if first:
raise ValueError("Cannot parse empty alignment")
return (start_align[0], end_align[0]), (start_align[1], end_align[1])
class PDBParser(Parser):
"""Extract metadata (e.g. PDB ID, comparative modeling templates) from a
PDB file. This handles PDB headers added by the PDB database itself,
comparative modeling packages such as MODELLER and Phyre2, and also
some custom headers that can be used to indicate that a file has been
locally modified in some way.
See also :class:`CIFParser` for coordinate files in mmCIF format,
or :class:`BinaryCIFParser` for BinaryCIF format.
"""
def parse_file(self, filename):
"""Extract metadata. See :meth:`Parser.parse_file` for details.
:param str filename: the file to extract metadata from.
:return: a dict with key `dataset` pointing to the PDB dataset;
'templates' pointing to a dict with keys the asym (chain)
IDs in the PDB file and values the list of comparative
model templates used to model that chain as
:class:`ihm.startmodel.Template` objects;
'entity_source' pointing to a dict with keys the asym IDs
and values :class:`ihm.source.Source` objects;
'software' pointing to a list of software used to generate
the file (as :class:`ihm.Software` objects);
'script' pointing to the script used to generate the
file, if any (as :class:`ihm.location.WorkflowFileLocation`
objects);
'metadata' a list of PDB metadata records.
This parser looks at PDB headers. Standard PDB database headers are
recognized, plus some added by common comparative modeling
packages such as MODELLER and Phyre2, as well as some custom headers
that can be used to denote that a PDB file is a locally-modified
version of some other resource. Additional details will be extracted
from other PDB headers if available, such as ``TITLE`` records.
If the first line of the file starts with ``HEADER`` and it also
contains a PDB ID, then the file is assumed to live in the PDB
database. For example, the following will be interpreted as
PDB entry 2HBJ::
HEADER HYDROLASE, GENE REGULATION 14-JUN-06 2HBJ
If the first line starts with ``EXPDTA DERIVED FROM`` then the
file is assumed to derive from a given PDB ID or a comparative
or integrative model available at a given DOI. ``TITLE`` records
are expected to describe the nature of the transformation::
EXPDTA DERIVED FROM PDB:1YKH
EXPDTA DERIVED FROM COMPARATIVE MODEL, DOI:10.1093/nar/gkt704
EXPDTA DERIVED FROM INTEGRATIVE MODEL, DOI:10.1016/j.str.2017.01.006
A first line starting with ``REMARK 99 Chain ID :`` is assumed to
be a model generated by Phyre2. Template information can be added
using Modeller-style headers, as below, if desired.
A first line starting with ``EXPDTA THEORETICAL MODEL, MODELLER``
is assumed to be a model generated by Modeller. Headers generated
by modern versions of Modeller are parsed to extract information
about the comparative modeling script, plus the templates used and
their alignment.
Templates named ``1abcX`` or ``1abcX_N`` are assumed to be
structures deposited in PDB (in this case, chain X in
structure 1ABC).
A custom ``TEMPLATE PATH`` header can be used to point to templates
that are not deposited in the PDB database. For example, the model
below is assumed to be constructed using templates from PDB codes
3JRO and 3F3F, plus another template in ``my_custom_pdb_file.pdb``,
and the given alignment::
EXPDTA THEORETICAL MODEL, MODELLER 9.18 2017/02/10 22:21:34
REMARK 6 ALIGNMENT: modeller_model.ali
REMARK 6 SCRIPT: model-default.py
REMARK 6 TEMPLATE PATH custom1 ../inputs/my_custom_pdb_file.pdb
REMARK 6 TEMPLATE: 3jroC 33:C - 424:C MODELS 33:A - 424:A AT 100.0%
REMARK 6 TEMPLATE: 3f3fG 482:G - 551:G MODELS 429:A - 488:A AT 10.0%
REMARK 6 TEMPLATE: custom1 9:A - 352:A MODELS 80:A - 414:A AT 32.0%
A first line starting with ``TITLE SWISS-MODEL SERVER``
is assumed to be a model generated by SWISS-MODEL, and information
about the template(s) is extracted from ``REMARK 3`` records.
""" # noqa: E501
ret = {'templates': {}, 'software': [], 'metadata': [], 'script': None,
'entity_source': {}}
with open(filename) as fh:
first_line = fh.readline()
local_file = location.InputFileLocation(
filename, details="Starting model structure")
if (first_line.startswith('HEADER') and len(first_line) > 62
and first_line[62] in string.digits):
self._parse_official_pdb(fh, first_line, ret)
elif first_line.startswith('EXPDTA DERIVED FROM PDB:'):
self._parse_derived_from_pdb(fh, first_line, local_file,
ret)
elif first_line.startswith('EXPDTA DERIVED FROM COMPARATIVE '
'MODEL, DOI:'):
self._parse_derived_from_comp_model(fh, first_line, local_file,
ret)
elif first_line.startswith('EXPDTA DERIVED FROM INTEGRATIVE '
'MODEL, DOI:'):
self._parse_derived_from_int_model(fh, first_line, local_file,
ret)
elif first_line.startswith(
'EXPDTA THEORETICAL MODEL, MODELLER'):
self._parse_modeller_model(fh, first_line, local_file,
filename, ret)
elif first_line.startswith('REMARK 99 Chain ID :'):
self._parse_phyre_model(fh, first_line, local_file,
filename, ret)
elif first_line.startswith('TITLE SWISS-MODEL SERVER'):
self._parse_swiss_model(fh, first_line, local_file,
filename, ret)
else:
self._parse_unknown_model(fh, first_line, local_file,
filename, ret)
return ret
def _parse_official_pdb(self, fh, first_line, ret):
"""Handle a file that's from the official PDB database."""
version, details, metadata, entity_source \
= self._parse_pdb_records(fh, first_line)
loc = location.PDBLocation(first_line[62:66].strip(), version, details)
ret['entity_source'] = entity_source
ret['metadata'] = metadata
ret['dataset'] = dataset.PDBDataset(loc, details=loc.details)
def _parse_derived_from_pdb(self, fh, first_line, local_file, ret):
# Model derived from a PDB structure; treat as a local experimental
# model with the official PDB as a parent
local_file.details = self._parse_details(fh)
db_code = first_line[27:].strip()
d = dataset.PDBDataset(local_file, details=local_file.details)
d.parents.append(dataset.PDBDataset(location.PDBLocation(db_code)))
ret['dataset'] = d
def _parse_derived_from_comp_model(self, fh, first_line, local_file, ret):
"""Model derived from a comparative model; link back to the original
model as a parent"""
self._parse_derived_from_model(
fh, first_line, local_file, ret, dataset.ComparativeModelDataset,
'comparative')
def _parse_derived_from_int_model(self, fh, first_line, local_file, ret):
"""Model derived from an integrative model; link back to the original
model as a parent"""
self._parse_derived_from_model(
fh, first_line, local_file, ret, dataset.IntegrativeModelDataset,
'integrative')
def _parse_derived_from_model(self, fh, first_line, local_file, ret,
dataset_class, model_type):
local_file.details = self._parse_details(fh)
d = dataset_class(local_file)
repo = location.Repository(doi=first_line[46:].strip())
# todo: better specify an unknown path
orig_loc = location.InputFileLocation(
repo=repo, path='.',
details="Starting %s model structure" % model_type)
d.parents.append(dataset_class(orig_loc))
ret['dataset'] = d
def _parse_modeller_model(self, fh, first_line, local_file, filename, ret):
version, date = first_line[38:].rstrip('\r\n').split(' ', 1)
s = _get_modeller(version, date)
ret['software'].append(s)
self._handle_comparative_model(local_file, filename, ret)
def _parse_phyre_model(self, fh, first_line, local_file, filename, ret):
# Model generated by Phyre2
s = ihm.Software(
name='Phyre2', classification='protein homology modeling',
description='Protein Homology/analogY Recognition '
'Engine V 2.0',
version='2.0', location='http://www.sbg.bio.ic.ac.uk/~phyre2/',
citation=ihm.citations.phyre2)
ret['software'].append(s)
self._handle_comparative_model(local_file, filename, ret)
def _parse_swiss_model(self, fh, first_line, local_file, filename, ret):
# Model generated by SWISS-MODEL
meta = _get_swiss_model_metadata(filename)
s = ihm.Software(
name='SWISS-MODEL', classification='protein homology modeling',
description='SWISS-MODEL: homology modelling of protein '
'structures and complexes, using %s engine'
% meta.get('info', {}).get('ENGIN', 'unknown'),
version=meta.get('info', {}).get('VERSN', ihm.unknown),
location='https://swissmodel.expasy.org/',
citation=ihm.citations.swiss_model)
ret['software'].append(s)
comp_model_ds = dataset.ComparativeModelDataset(local_file)
ret['dataset'] = comp_model_ds
ret['templates'] = self._add_swiss_model_templates(
local_file, meta, comp_model_ds, ret)
def _add_swiss_model_templates(self, local_file, meta, comp_model_ds, ret):
"""Add template information extracted from SWISS-MODEL PDB metadata"""
ret_templates = {}
templates = [v for k, v in sorted(((k, v) for k, v in meta.items()
if k.startswith('TEMPLATE')),
key=operator.itemgetter(0))]
for t in templates:
loc = location.PDBLocation(t['PDBID'])
d = dataset.PDBDataset(loc)
# Make the comparative model dataset derive from the template's
comp_model_ds.parents.append(d)
for chain in t['MMCIF']:
# todo: check we're using the right chain ID and that target
# and template chain IDs really are always the same
offset = int(t[chain, 'OFF'])
tgt_seq, tgt_len = _parse_seq(t[chain, 'TRG'])
tmpl_seq, tmpl_len = _parse_seq(t[chain, 'TPL'])
tgt_rng, tmpl_rng = _get_aligned_region(tgt_seq, tmpl_seq)
# apply offset
tmpl_rng = (tmpl_rng[0] + offset, tmpl_rng[1] + offset)
seq_id = float(t['SID'])
seq_id = startmodel.SequenceIdentity(
float(t['SID']),
SequenceIdentityDenominator.NUM_ALIGNED_WITHOUT_GAPS)
tmpl = startmodel.Template(
dataset=d, asym_id=chain, seq_id_range=tgt_rng,
template_seq_id_range=tmpl_rng, sequence_identity=seq_id,
alignment_file=local_file)
ret_templates[chain] = [tmpl]
return ret_templates
def _parse_unknown_model(self, fh, first_line, local_file, filename, ret):
# todo: revisit assumption that all unknown source PDBs are
# comparative models
self._handle_comparative_model(local_file, filename, ret)
def _handle_comparative_model(self, local_file, pdbname, ret):
d = dataset.ComparativeModelDataset(local_file)
ret['dataset'] = d
ret['templates'], ret['script'] \
= self._get_templates_script(pdbname, d)
def _get_templates_script(self, pdbname, target_dataset):
template_path_map = {}
alnfile = None
script = None
alnfilere = re.compile(r'REMARK 6 ALIGNMENT: (\S+)')
scriptre = re.compile(r'REMARK 6 SCRIPT: (\S+)')
tmppathre = re.compile(r'REMARK 6 TEMPLATE PATH (\S+) (\S+)')
tmpre = re.compile(r'REMARK 6 TEMPLATE: '
r'(\S+) (\S+):(\S+) \- (\S+):\S+ '
r'MODELS (\S+):(\S+) \- (\S+):\S+ AT (\S+)%')
template_info = []
with open(pdbname) as fh:
for line in fh:
if line.startswith('ATOM'): # Read only the header
break
m = tmppathre.match(line)
if m:
template_path_map[m.group(1)] = \
util._get_relative_path(pdbname, m.group(2))
m = alnfilere.match(line)
if m:
# Path to alignment is relative to that of the PDB file
fname = util._get_relative_path(pdbname, m.group(1))
alnfile = location.InputFileLocation(
fname,
details="Alignment for starting comparative model")
m = scriptre.match(line)
if m:
# Path to script is relative to that of the PDB file
fname = util._get_relative_path(pdbname, m.group(1))
script = location.WorkflowFileLocation(
fname, details="Script for starting comparative model")
m = tmpre.match(line)
if m:
t = ModellerTemplate(
name=m.group(1), template_begin=m.group(2),
template_chain=m.group(3), template_end=m.group(4),
target_begin=m.group(5), target_chain=m.group(6),
target_end=m.group(7), pct_seq_id=m.group(8))
template_info.append(t)
templates = {}
for t in template_info:
chain, template = _handle_modeller_template(
t, template_path_map, target_dataset, alnfile)
if chain not in templates:
templates[chain] = []
templates[chain].append(template)
# Sort templates by starting residue, then ending residue
for chain in templates.keys():
templates[chain] = sorted(templates[chain],
key=operator.attrgetter('seq_id_range'))
return templates, script
def _parse_pdb_records(self, fh, first_line):
"""Extract information from an official PDB"""
metadata = []
details = ''
compnd = ''
source = ''
for line in fh:
if line.startswith('TITLE'):
details += line[10:].rstrip()
elif line.startswith('COMPND'):
compnd += line[10:].rstrip()
elif line.startswith('SOURCE'):
source += line[10:].rstrip()
elif line.startswith('HELIX'):
metadata.append(startmodel.PDBHelix(line))
return (first_line[50:59].strip(),
details if details else None, metadata,
self._make_entity_source(compnd, source))
def _make_one_entity_source(self, compnd, source):
"""Make a single ihm.source.Source object"""
def make_from_source(cls):
return cls(scientific_name=source.get('ORGANISM_SCIENTIFIC'),
common_name=source.get('ORGANISM_COMMON'),
strain=source.get('STRAIN'),
ncbi_taxonomy_id=source.get('ORGANISM_TAXID'))
if compnd.get('ENGINEERED', None) == 'YES':
gene = make_from_source(ihm.source.Details)
host = ihm.source.Details(
scientific_name=source.get('EXPRESSION_SYSTEM'),
common_name=source.get('EXPRESSION_SYSTEM_COMMON'),
strain=source.get('EXPRESSION_SYSTEM_STRAIN'),
ncbi_taxonomy_id=source.get('EXPRESSION_SYSTEM_TAXID'))
return ihm.source.Manipulated(gene=gene, host=host)
else:
if source.get('SYNTHETIC', None) == 'YES':
cls = ihm.source.Synthetic
else:
cls = ihm.source.Natural
return make_from_source(cls)
def _make_entity_source(self, compnd, source):
"""Make ihm.source.Source objects given PDB COMPND and SOURCE lines"""
entity_source = {}
# Convert each string into dict of mol_id vs keys
compnd = self._parse_pdb_mol_id(compnd)
source = self._parse_pdb_mol_id(source)
for mol_id, c in compnd.items():
if mol_id in source and 'CHAIN' in c:
s = self._make_one_entity_source(c, source[mol_id])
for chain in c['CHAIN'].split(','):
entity_source[chain.strip()] = s
return entity_source
def _parse_pdb_mol_id(self, txt):
"""Convert text COMPND or SOURCE records to a dict of mol_id vs keys"""
d = {}
mol_id = None
for pair in txt.split(';'):
spl = pair.split(':')
if len(spl) == 2:
key = spl[0].upper().strip()
val = spl[1].upper().strip()
if key == 'MOL_ID':
mol_id = d[val] = {}
elif mol_id is not None:
mol_id[key] = val
return d
def _parse_details(self, fh):
"""Extract TITLE records from a PDB file"""
details = ''
for line in fh:
if line.startswith('TITLE'):
details += line[10:].rstrip()
elif line.startswith('ATOM'):
break
return details
class _Database2Handler(ihm.reader.Handler):
def __init__(self, m):
self.m = m
def __call__(self, database_id, database_code):
self.m['db'][database_id.upper()] = database_code
class _StructHandler(ihm.reader.Handler):
def __init__(self, m):
self.m = m
def __call__(self, title):
self.m['title'] = title
class _AuditRevHistHandler(ihm.reader.Handler):
def __init__(self, m):
self.m = m
def __call__(self, revision_date):
self.m['version'] = revision_date
class _ExptlHandler(ihm.reader.Handler):
def __init__(self, m):
self.m = m
def __call__(self, method):
# Modeller currently sets _exptl.method, not _software
if method.startswith('model, MODELLER Version '):
version, date = method[24:].split(' ', 1)
s = _get_modeller(version, date)
self.m['software'].append(s)
class _ModellerHandler(ihm.reader.Handler):
"""Handle the Modeller-specific _modeller category"""
def __init__(self, m, filename):
self.m = m
self.filename = filename
self.m['alnfile'] = self.m['script'] = None
def __call__(self, alignment, script):
if alignment:
# Paths are relative to that of the mmCIF file
fname = util._get_relative_path(self.filename, alignment)
self.m['alnfile'] = location.InputFileLocation(
fname, details="Alignment for starting comparative model")
if script:
fname = util._get_relative_path(self.filename, script)
self.m['script'] = location.WorkflowFileLocation(
fname, details="Script for starting comparative model")
class _ModellerTemplateHandler(ihm.reader.Handler):
"""Handle the Modeller-specific _modeller_template category"""
def __init__(self, m):
self.m = m
self.m['modeller_templates'] = []
def __call__(self, name, template_begin, template_end, target_begin,
target_end, pct_seq_id):
tmp_begin, tmp_chain = template_begin.split(':', 1)
tmp_end, tmp_chain = template_end.split(':', 1)
tgt_begin, tgt_chain = target_begin.split(':', 1)
tgt_end, tgt_chain = target_end.split(':', 1)
t = ModellerTemplate(name=name, template_begin=tmp_begin,
template_end=tmp_end, template_chain=tmp_chain,
target_begin=tgt_begin, target_end=tgt_end,
target_chain=tgt_chain, pct_seq_id=pct_seq_id)
self.m['modeller_templates'].append(t)
class _ModelCifAlignment:
"""Store alignment information from a ModelCIF file"""
def __init__(self):
self.target = self.template = self.seq_id = None
def get_template_object(self, target_dataset):
"""Convert the alignment information into an IHM Template object"""
return self.template.template.get_template_object(target_dataset,
aln=self)
class _TemplateRange:
"""Store information about a template residue range from a ModelCIF file"""
def __init__(self):
self.seq_id_range = None
self.template = None
class _TargetRange:
"""Store information about a target residue range from a ModelCIF file"""
def __init__(self):
self.seq_id_range = None
self.asym_id = None
class _Template:
"""Store template information from a ModelCIF file"""
# Map ModelCIF ma_template_ref_db_details.db_name to IHMCIF equivalents
_modelcif_dbmap = {'PDB': (dataset.PDBDataset, location.PDBLocation),
'PDB-DEV': (dataset.IntegrativeModelDataset,
location.PDBDevLocation),
'MA': (dataset.DeNovoModelDataset,
location.ModelArchiveLocation),
'ALPHAFOLDDB': (dataset.DeNovoModelDataset,
location.AlphaFoldDBLocation)}
def __init__(self):
self.auth_asym_id = self.db_name = self.db_accession_code = None
self.db_version_date = self.target_asym_id = None
def get_template_object(self, target_dataset, aln=None):
"""Convert the template information into an IHM Template object"""
dsetcls, loccls = self._modelcif_dbmap.get(
self.db_name.upper(),
(dataset.Dataset, location.DatabaseLocation))
loc = loccls(db_code=self.db_accession_code,
version=self.db_version_date)
d = dsetcls(location=loc)
# Make the computed model dataset derive from the template's
target_dataset.parents.append(d)
t = startmodel.Template(
dataset=d, asym_id=self.auth_asym_id,
seq_id_range=aln.target.seq_id_range if aln else (None, None),
template_seq_id_range=aln.template.seq_id_range
if aln else (None, None),
sequence_identity=aln.seq_id if aln else None)
return aln.target.asym_id if aln else self.target_asym_id, t
class _SystemReader:
"""A minimal implementation, so we can use some of the Handlers
in ihm.reader but get outputs in the results dict."""
def __init__(self, m):
self.software = ihm.reader.IDMapper(m['software'], ihm.Software,
*(None,) * 4)
self.citations = ihm.reader.IDMapper(None, ihm.Citation, *(None,) * 8)
self.alignments = ihm.reader.IDMapper(m['alignments'],
_ModelCifAlignment)
self.template_ranges = ihm.reader.IDMapper(None, _TemplateRange)
self.target_ranges = ihm.reader.IDMapper(None, _TargetRange)
self.templates = ihm.reader.IDMapper(m['templates'], _Template)
self.entities = ihm.reader.IDMapper(None, ihm.Entity, [])
self.asym_units = ihm.reader.IDMapper(m['asyms'], ihm.AsymUnit, None)
self.src_gens = ihm.reader.IDMapper(None, ihm.source.Manipulated)
self.src_nats = ihm.reader.IDMapper(None, ihm.source.Natural)
self.src_syns = ihm.reader.IDMapper(None, ihm.source.Synthetic)
class _TemplateDetailsHandler(ihm.reader.Handler):
"""Extract template information from a ModelCIF file"""
def __init__(self, sysr):
self.sysr = sysr
def __call__(self, template_id, target_asym_id, template_auth_asym_id):
template = self.sysr.templates.get_by_id(template_id)
template.auth_asym_id = template_auth_asym_id
template.target_asym_id = target_asym_id
class _TemplateRefDBDetailsHandler(ihm.reader.Handler):
"""Extract template database information from a ModelCIF file"""
def __init__(self, sysr):
self.sysr = sysr
def __call__(self, template_id, db_name, db_accession_code,
db_version_date):
template = self.sysr.templates.get_by_id(template_id)
template.db_name = db_name
template.db_accession_code = db_accession_code
template.db_version_date = db_version_date
class _TemplatePolySegmentHandler(ihm.reader.Handler):
"""Extract template residue range information from a ModelCIF file"""
def __init__(self, sysr):
self.sysr = sysr
def __call__(self, id, template_id, residue_number_begin,
residue_number_end):
tr = self.sysr.template_ranges.get_by_id(id)
tr.seq_id_range = (self.get_int(residue_number_begin),
self.get_int(residue_number_end))
tr.template = self.sysr.templates.get_by_id(template_id)
class _TemplatePolyMappingHandler(ihm.reader.Handler):
"""Extract target residue range information from a ModelCIF file"""
def __init__(self, sysr):
self.sysr = sysr
def __call__(self, id, template_segment_id, target_asym_id,
target_seq_id_begin, target_seq_id_end):
m = self.sysr.target_ranges.get_by_id((template_segment_id,
target_asym_id))
m.seq_id_range = (self.get_int(target_seq_id_begin),
self.get_int(target_seq_id_end))
class _SeqIDMapper:
"""Map ModelCIF sequence identity to IHMCIF equivalent"""
identity_map = {
"length of the shorter sequence":
SequenceIdentityDenominator.SHORTER_LENGTH,
"number of aligned positions (including gaps)":
SequenceIdentityDenominator.NUM_ALIGNED_WITH_GAPS}
def __call__(self, pct_id, denom):
denom = self.identity_map.get(
denom.lower() if denom else None,
SequenceIdentityDenominator.OTHER)
return startmodel.SequenceIdentity(
value=pct_id, denominator=denom)
class _AlignmentDetailsHandler(ihm.reader.Handler):
"""Read pairwise alignments (ma_alignment_details table)"""
def __init__(self, sysr):
self.sysr = sysr
self.seq_id_mapper = _SeqIDMapper()
def __call__(self, alignment_id, template_segment_id, target_asym_id,
percent_sequence_identity, sequence_identity_denominator):
aln = self.sysr.alignments.get_by_id(alignment_id)
aln.seq_id = self.seq_id_mapper(
self.get_float(percent_sequence_identity),
sequence_identity_denominator)
tgt_rng = self.sysr.target_ranges.get_by_id((template_segment_id,
target_asym_id))
tmpl_rng = self.sysr.template_ranges.get_by_id(template_segment_id)
aln.target = tgt_rng
aln.target.asym_id = target_asym_id
aln.template = tmpl_rng
class _ModBaseLocation(location.DatabaseLocation):
"""A model deposited in ModBase"""
def __init__(self, db_code, version=None, details=None):
# Use details to describe ModBase, ignoring the file title
super().__init__(
db_code, version=version,
details="ModBase database of comparative protein structure models")
class _CIFParserBase(Parser):
# Map PDBx database_2.database_name to IHMCIF equivalents
dbmap = {'PDB': (location.PDBLocation, dataset.PDBDataset),
'PDB-DEV': (location.PDBDevLocation,
dataset.IntegrativeModelDataset),
'MODELARCHIVE': (location.ModelArchiveLocation,
dataset.DeNovoModelDataset),
'ALPHAFOLDDB': (location.AlphaFoldDBLocation,
dataset.DeNovoModelDataset),
'MODBASE': (_ModBaseLocation, dataset.ComparativeModelDataset)}
def parse_file(self, filename):
m = {'db': {}, 'title': 'Starting model structure',
'software': [], 'templates': [], 'alignments': [],
'asyms': []}
with self._open_file(filename) as fh:
dbh = _Database2Handler(m)
structh = _StructHandler(m)
arevhisth = _AuditRevHistHandler(m)
exptlh = _ExptlHandler(m)
modellerh = _ModellerHandler(m, filename)
modtmplh = _ModellerTemplateHandler(m)
sysr = _SystemReader(m)
r = self._reader_class(
fh, {'_database_2': dbh, '_struct': structh,
'_pdbx_audit_revision_history': arevhisth,
'_exptl': exptlh, '_modeller': modellerh,
'_modeller_template': modtmplh,
'_software': ihm.reader._SoftwareHandler(sysr),
'_citation': ihm.reader._CitationHandler(sysr),
'_struct_asym': ihm.reader._StructAsymHandler(sysr),
'_entity': ihm.reader._EntityHandler(sysr),
'_entity_src_nat': ihm.reader._EntitySrcNatHandler(sysr),
'_pdbx_entity_src_syn':
ihm.reader._EntitySrcSynHandler(sysr),
'_entity_src_gen': ihm.reader._EntitySrcGenHandler(sysr),
'_citation_author':
ihm.reader._CitationAuthorHandler(sysr),
'_ma_template_details': _TemplateDetailsHandler(sysr),
'_ma_template_ref_db_details':
_TemplateRefDBDetailsHandler(sysr),
'_ma_template_poly_segment':
_TemplatePolySegmentHandler(sysr),
'_ma_target_template_poly_mapping':
_TemplatePolyMappingHandler(sysr),
'_ma_alignment_details': _AlignmentDetailsHandler(sysr)})
r.read_file()
dset = self._get_dataset(filename, m)
return {'dataset': dset, 'software': m['software'],
'templates': self._get_templates(filename, m, dset),
'entity_source': {asym.id: asym.entity.source
for asym in m['asyms']},
'script': m['script']}
def _get_dataset(self, filename, m):
# Check for known databases. Note that if a file is in multiple
# databases, we currently return one "at random"
for dbid, dbcode in m['db'].items():
if dbid in self.dbmap:
loccls, dsetcls = self.dbmap[dbid]
loc = loccls(db_code=dbcode, version=m.get('version'),
details=m['title'])
return dsetcls(location=loc, details=loc.details)
# Fall back to a local file
loc = location.InputFileLocation(filename, details=m['title'])
return dataset.ComparativeModelDataset(
location=loc, details=loc.details)
def _get_templates(self, filename, m, dset):
alnfile = m['alnfile']
template_path_map = {}
templates = {}
def _handle_templates():
# Use Modeller-provided templates if available
if m['modeller_templates']:
for t in m['modeller_templates']:
yield _handle_modeller_template(
t, template_path_map, dset, alnfile)
# Otherwise, use ModelCIF templates
else:
seen_templates = set()
for aln in m['alignments']:
seen_templates.add(aln.template.template)
yield aln.get_template_object(dset)
# Handle any unaligned templates (e.g. AlphaFold)
for t in m['templates']:
if t not in seen_templates:
yield t.get_template_object(dset)
for chain, template in _handle_templates():
if chain not in templates:
templates[chain] = []
templates[chain].append(template)
# Sort templates by starting residue, then ending residue
for chain in templates.keys():
templates[chain] = sorted(templates[chain],
key=operator.attrgetter('seq_id_range'))
return templates
class CIFParser(_CIFParserBase):
"""Extract metadata (e.g. PDB ID, comparative modeling templates)
from an mmCIF file. This currently handles mmCIF files from the PDB
database itself, models compliant with the ModelCIF dictionary,
plus files from Model Archive or the outputs from the
MODELLER comparative modeling package.
See also :class:`PDBParser` for coordinate files in legacy PDB format,
or :class:`BinaryCIFParser` for BinaryCIF format.
"""
_reader_class = ihm.format.CifReader
def _open_file(self, filename):
return open(filename)
def parse_file(self, filename):
"""Extract metadata. See :meth:`Parser.parse_file` for details.
:param str filename: the file to extract metadata from.
:return: a dict with key `dataset` pointing to the coordinate file,
as an entry in the PDB or Model Archive databases if the
file contains appropriate headers, otherwise to the
file itself;
'templates' pointing to a dict with keys the asym (chain)
IDs in the PDB file and values the list of comparative
model templates used to model that chain as
:class:`ihm.startmodel.Template` objects;
'entity_source' pointing to a dict with keys the asym IDs
and values :class:`ihm.source.Source` objects;
'software' pointing to a list of software used to generate
the file (as :class:`ihm.Software` objects);
'script' pointing to the script used to generate the
file, if any (as :class:`ihm.location.WorkflowFileLocation`
objects).
"""
return super().parse_file(filename)
class BinaryCIFParser(_CIFParserBase):
"""Extract metadata from a BinaryCIF file. This works in a very similar
fashion to :class:`CIFParser`; see that class for more information.
"""
_reader_class = ihm.format_bcif.BinaryCifReader
def _open_file(self, filename):
return open(filename, 'rb')
|