Source code for ihm.restraint

"""Classes for handling restraints on the system.
"""

import ihm


[docs] class PseudoSite: """Selection of a pseudo position in the system. Pseudo positions are typically used to reference a point or sphere that is not explicitly represented, in a :class:`PseudoSiteFeature` or :class:`CrossLinkPseudoSite`. :param float x: Cartesian X coordinate of this site. :param float y: Cartesian Y coordinate of this site. :param float z: Cartesian Z coordinate of this site. :param float radius: Radius of the site, if applicable. :param str description: Additional text describing this feature. """ def __init__(self, x, y, z, radius=None, description=None): self.x, self.y, self.z = x, y, z self.radius = radius self.description = description def _signature(self): return tuple("%.3f" % v if v else None for v in (self.x, self.y, self.z, self.radius))
[docs] class Restraint: """Base class for all restraints. See :attr:`ihm.System.restraints`. """ def _get_report(self): return str(self)
[docs] class RestraintGroup(list): """A set of related :class:`Restraint` objects. This is implemented as a simple list. Note that due to limitations of the underlying dictionary, only certain combinations of restraints can be placed in groups. In particular, all objects in a group must be of the same type, and only certain types (currently only :class:`DerivedDistanceRestraint`, :class:`PredictedContactRestraint` and :class:`HydroxylRadicalRestraint`) can be grouped. Empty groups can be created, but will be ignored on output as the dictionary does not support them. Restraint groups should be stored in the system by adding them to :attr:`ihm.System.restraint_groups`. """ pass
[docs] class EM3DRestraint(Restraint): """Restrain part of the system to match an electron microscopy density map. :param dataset: Reference to the density map data (usually an :class:`~ihm.dataset.EMDensityDataset`). :type dataset: :class:`~ihm.dataset.Dataset` :param assembly: The part of the system that is fit into the map. :type assembly: :class:`~ihm.Assembly` :param bool segment: True iff the map has been segmented. :param str fitting_method: The method used to fit the model into the map. :param fitting_method_citation: The publication describing the fitting method. :type fitting_method_citation: :class:`~ihm.Citation` :param int number_of_gaussians: Number of Gaussians used to represent the map as a Gaussian Mixture Model (GMM), if applicable. :param str details: Additional details regarding the fitting. """ def _get_report(self): ret = "Fit to 3D electron microscopy density map" if self.fitting_method: ret += " using " + self.fitting_method return ret def __init__(self, dataset, assembly, segment=None, fitting_method=None, fitting_method_citation=None, number_of_gaussians=None, details=None): self.dataset, self.assembly = dataset, assembly self.segment, self.fitting_method = segment, fitting_method self.fitting_method_citation = fitting_method_citation self.number_of_gaussians = number_of_gaussians self.details = details #: Information about the fit of each model to this restraint's data. #: This is a Python dict where keys are :class:`~ihm.model.Model` #: objects and values are :class:`EM3DRestraintFit` objects. self.fits = {}
[docs] class EM3DRestraintFit: """Information on the fit of a model to an :class:`EM3DRestraint`. See :attr:`EM3DRestaint.fits`. :param float cross_correlation_coefficient: The fit between the model and the map. """ __slots__ = ["cross_correlation_coefficient"] # Reduce memory usage def __init__(self, cross_correlation_coefficient=None): self.cross_correlation_coefficient = cross_correlation_coefficient
[docs] class SASRestraint(Restraint): """Restrain part of the system to match small angle scattering (SAS) data. :param dataset: Reference to the SAS data (usually an :class:`~ihm.dataset.SASDataset`). :type dataset: :class:`~ihm.dataset.Dataset` :param assembly: The part of the system that is fit against SAS data. :type assembly: :class:`~ihm.Assembly` :param bool segment: True iff the SAS profile has been segmented. :param str fitting_method: The method used to fit the model against the SAS data (e.g. FoXS, DAMMIF). :param str fitting_atom_type: The set of atoms fit against the data (e.g. "Heavy atoms", "All atoms"). :param bool multi_state: Whether multiple state fitting was done. :param float radius_of_gyration: Radius of gyration obtained from the SAS profile, if used as part of the restraint. :param str details: Additional details regarding the fitting. """ def _get_report(self): state_map = {True: "Multi-state ", False: "Single-state "} ret = "%sSAS restraint" % state_map.get(self.multi_state, "") if self.fitting_atom_type: ret += " on " + self.fitting_atom_type return ret def __init__(self, dataset, assembly, segment=None, fitting_method=None, fitting_atom_type=None, multi_state=None, radius_of_gyration=None, details=None): self.dataset, self.assembly = dataset, assembly self.segment, self.fitting_method = segment, fitting_method self.fitting_atom_type = fitting_atom_type self.multi_state = multi_state self.radius_of_gyration = radius_of_gyration self.details = details #: Information about the fit of each model to this restraint's data. #: This is a Python dict where keys are :class:`~ihm.model.Model` #: objects and values are :class:`SASRestraintFit` objects. self.fits = {}
[docs] class SASRestraintFit: """Information on the fit of a model to a :class:`SASRestraint`. See :attr:`SASRestaint.fits`. :param float chi_value: The fit between the model and the SAS data. """ __slots__ = ["chi_value"] # Reduce memory usage def __init__(self, chi_value=None): self.chi_value = chi_value
[docs] class EM2DRestraint(Restraint): """Restrain part of the system to match an electron microscopy class average. :param dataset: Reference to the class average data (usually an :class:`~ihm.dataset.EM2DClassDataset`). :type dataset: :class:`~ihm.dataset.Dataset` :param assembly: The part of the system that is fit against the class. :type assembly: :class:`~ihm.Assembly` :param bool segment: True iff the image has been segmented. :param int number_raw_micrographs: The number of particles picked from the original raw micrographs that were used to create the class average. :param float pixel_size_width: Width of each pixel in the image, in angstroms. :param float pixel_size_height: Height of each pixel in the image, in angstroms. :param float image_resolution: Resolution of the image, in angstroms. :param int number_of_projections: Number of projections of the assembly used to fit against the image, if applicable. :param str details: Additional details regarding the fitting. """ def _get_report(self): return "Fit to 2D electron microscopy class average" def __init__(self, dataset, assembly, segment=None, number_raw_micrographs=None, pixel_size_width=None, pixel_size_height=None, image_resolution=None, number_of_projections=None, details=None): self.dataset, self.assembly = dataset, assembly self.segment = segment self.number_raw_micrographs = number_raw_micrographs self.pixel_size_width = pixel_size_width self.pixel_size_height = pixel_size_height self.image_resolution = image_resolution self.number_of_projections = number_of_projections self.details = details #: Information about the fit of each model to this restraint's data. #: This is a Python dict where keys are :class:`~ihm.model.Model` #: objects and values are :class:`EM2DRestraintFit` objects. self.fits = {}
[docs] class EM2DRestraintFit: """Information on the fit of a model to an :class:`EM2DRestraint`. See :attr:`EM2DRestaint.fits`. :param float cross_correlation_coefficient: The fit between the model and the class average. :param rot_matrix: Rotation matrix (as a 3x3 array of floats) that places the model on the image. :param tr_vector: Translation vector (as a 3-element float list) that places the model on the image. """ __slots__ = ["cross_correlation_coefficient", "rot_matrix", "tr_vector"] # Reduce memory usage def __init__(self, cross_correlation_coefficient=None, rot_matrix=None, tr_vector=None): self.cross_correlation_coefficient = cross_correlation_coefficient self.rot_matrix, self.tr_vector = rot_matrix, tr_vector
[docs] class CrossLinkRestraint(Restraint): """Restrain part of the system to match a set of cross-links. :param dataset: Reference to the cross-link data (usually a :class:`~ihm.dataset.CXMSDataset`). :type dataset: :class:`~ihm.dataset.Dataset` :param linker: The type of chemical linker used. :type linker: :class:`ihm.ChemDescriptor` """ assembly = None # no struct_assembly_id for XL restraints def _get_report(self): return ("%d %s cross-links from %d experimental identifications" % (len(self.cross_links), self.linker.auth_name, sum(len(x) for x in self.experimental_cross_links))) def __init__(self, dataset, linker): self.dataset, self.linker = dataset, linker #: All cross-links identified in the experiment, as a simple list #: of lists of :class:`ExperimentalCrossLink` objects. All cross-links #: in the same sublist are treated as experimentally ambiguous. For #: example, xl2 and xl3 here are considered ambiguous:: #: #: restraint.experimental_cross_links.append([xl1]) #: restraint.experimental_cross_links.append([xl2, xl3]) self.experimental_cross_links = [] #: All cross-links used in the modeling, as a list of #: :class:`CrossLink` objects. self.cross_links = []
[docs] class DistanceRestraint: """Base class for all distance restraints. These are typically used in a :class:`DerivedDistanceRestraint`. Do not use this class directly but instead use a derived class such as :class:`HarmonicDistanceRestraint`, :class:`UpperBoundDistanceRestraint`, :class:`LowerBoundDistanceRestraint`, or :class:`LowerUpperBoundDistanceRestraint`. """ restraint_type = None #: The minimum distance allowed for this restraint, #: or None if unconstrained distance_lower_limit = None #: The maximum distance allowed for this restraint, #: or None if unconstrained distance_upper_limit = None
[docs] class HarmonicDistanceRestraint(DistanceRestraint): """Harmonically restrain two objects to be close to a given distance apart. These objects are typically used in a :class:`DerivedDistanceRestraint`. :param float distance: Equilibrium distance """ restraint_type = 'harmonic' def __init__(self, distance): self.distance = distance #: The equilibrium distance distance_lower_limit = property(lambda self: self.distance) #: The equilibrium distance distance_upper_limit = distance_lower_limit
[docs] class UpperBoundDistanceRestraint(DistanceRestraint): """Harmonically restrain two objects to be below a given distance apart. These objects are typically used in a :class:`DerivedDistanceRestraint`. :param float distance: Distance threshold """ restraint_type = 'upper bound' def __init__(self, distance): self.distance = distance #: The maximum distance allowed by this restraint distance_upper_limit = property(lambda self: self.distance) #: Minimum distance (unconstrained, so always None) distance_lower_limit = None
[docs] class LowerBoundDistanceRestraint(DistanceRestraint): """Harmonically restrain two objects to be above a given distance apart. These objects are typically used in a :class:`DerivedDistanceRestraint`. :param float distance: Distance threshold """ restraint_type = 'lower bound' def __init__(self, distance): self.distance = distance #: The minimum distance allowed by this restraint distance_lower_limit = property(lambda self: self.distance) #: Maximum distance (unconstrained, so always None) distance_upper_limit = None
[docs] class LowerUpperBoundDistanceRestraint(DistanceRestraint): """Harmonically restrain two objects to be above a given distance and below another distance apart. These objects are typically used in a :class:`DerivedDistanceRestraint`. :param float distance_lower_limit: Lower bound on the distance. :param float distance_upper_limit: Upper bound on the distance. """ restraint_type = 'lower and upper bound' def __init__(self, distance_lower_limit, distance_upper_limit): #: The minimum distance allowed by this restraint self.distance_lower_limit = distance_lower_limit #: The maximum distance allowed by this restraint self.distance_upper_limit = distance_upper_limit
[docs] class CrossLinkPseudoSite: """Pseudo site corresponding to one end of a cross-link. These objects are used when the end of a cross-link is not represented in the model but its position is known (e.g. it may have been approximated given the position of nearby residues). They are passed as the ``pseudo1`` or ``pseudo2`` arguments to :class:`CrossLink` subclasses. :param site: The pseudo site coordinates :type site: :class:`PseudoSite` :param model: The model in whose coordinate system the pseudo site is active (if not specified, the coordinates are assumed to be valid for all models using this cross-link). :type model: :class:`ihm.model.Model` """ def __init__(self, site, model=None): self.site, self.model = site, model
[docs] class CrossLinkFit: """Information on the fit of a single model to a :class:`CrossLink`. See :attr:`ResidueCrossLink.fits`, :attr:`AtomCrossLink.fits`, or :attr:`FeatureCrossLink.fits`. See also :class:`CrossLinkGroupFit` for information on the fit of a model group or ensemble in aggregate to the cross-link. :param float psi: Uncertainty in the experimental data. :param float sigma1: Uncertainty in the position of the first residue. :param float sigma2: Uncertainty in the position of the second residue. """ __slots__ = ["psi", "sigma1", "sigma2"] # Reduce memory usage def __init__(self, psi=None, sigma1=None, sigma2=None): self.psi, self.sigma1, self.sigma2 = psi, sigma1, sigma2
[docs] class CrossLinkGroupFit: """Information on the fit of a :class:`~ihm.model.ModelGroup` or :class:`~ihm.model.Ensemble` in aggregate to a :class:`CrossLink`. See :attr:`ResidueCrossLink.fits`, :attr:`AtomCrossLink.fits`, or :attr:`FeatureCrossLink.fits`. See also :class:`CrossLinkFit` for information on the fit of a single model to the cross-link. :param float median_distance: Actual median cross-link distance in the sampled models. :param int num_models: Number of models sampled, for which the median distance is provided. :param str details: More information on the fit. """ __slots__ = ["median_distance", "num_models", "details"] # Reduce memory usage def __init__(self, median_distance, num_models=None, details=None): self.median_distance = median_distance self.num_models, self.details = num_models, details
[docs] class Feature: """Base class for selecting parts of the system that a restraint acts on. This class should not be used itself; instead, see :class:`ResidueFeature`, :class:`AtomFeature`, :class:`NonPolyFeature`, :class:`InterfaceResidueFeature`, and :class:`PseudoSiteFeature`. Features are typically assigned to one or more :class:`~ihm.restraint.GeometricRestraint` or :class:`~ihm.restraint.DerivedDistanceRestraint` objects. """ details = None type = ihm.unknown def _all_entities_or_asyms(self): # Get all Entities or AsymUnits referenced by this object return [] def _get_entity_type(self): return ihm.unknown
[docs] class ResidueFeature(Feature): """Selection of one or more residues from the system. Residues can be selected from both :class:`ihm.AsymUnit` and :class:`ihm.Entity` (the latter implies that it selects residues in all instances of that entity). Individual residues can also be selected by passing :class:`ihm.Residue` objects. :param sequence ranges: A list of :class:`ihm.AsymUnitRange`, :class:`ihm.AsymUnit`, :class:`ihm.EntityRange`, :class:`ihm.Residue`, and/or :class:`ihm.Entity` objects. :param str details: Additional text describing this feature. :param bool by_residue: If specified, indicates whether the residue range is represented by invididual residues, rather than the closest primitive object with the highest resolution. :param str rep_atom: If by_residue is True, the atom used to represent the residue in three dimensions (usually CA or CB). """ _interface = False # Type is 'residue' if each range selects a single residue, otherwise # it is 'residue range' def __get_type(self): for r in self.ranges: if r.seq_id_range[0] != r.seq_id_range[1]: return 'residue range' return 'residue' type = property(__get_type) def __init__(self, ranges, details=None, by_residue=None, rep_atom=None): self.ranges, self.details = ranges, details self.by_residue, self.rep_atom = by_residue, rep_atom _ = self._get_entity_type() def _signature(self): return tuple(self.ranges) + (self.by_residue, self.rep_atom) def _all_entities_or_asyms(self): return self.ranges def _get_entity_type(self): def _get_entity(x): if isinstance(x, ihm.Entity): return x return x.entity if x.entity else x.asym.entity if any(not _get_entity(r).is_polymeric() for r in self.ranges): raise ValueError("%s cannot select non-polymeric entities" % self) else: return _get_entity(self.ranges[0]).type if self.ranges else None
[docs] class InterfaceResidueFeature(ResidueFeature): """Selection of one or residues from the system that are identified to be at the binding site. :param binding_partners: The binding partners at the interface. Each partner can be an :class:`ihm.AsymUnit` if the specific chain is known, or :class:`ihm.Entity` otherwise. :type binding_partner: list of :class:`ihm.Entity` or :class:`ihm.AsymUnit` :param dataset: Reference to the data from which the interface residue is determined. :type dataset: :class:`~ihm.dataset.Dataset` See :class:`ResidueFeature` for a description of the other parameters. """ _interface = True def __init__(self, ranges, binding_partners, dataset, details=None, by_residue=None, rep_atom=None): super().__init__(ranges=ranges, details=details, by_residue=by_residue, rep_atom=rep_atom) self.binding_partners, self.dataset = binding_partners, dataset def _signature(self): return super()._signature() + tuple(self.binding_partners)
[docs] class AtomFeature(Feature): """Selection of one or more atoms from the system. Atoms can be selected from polymers or non-polymers (but not both). Atoms can also be selected from both :class:`ihm.AsymUnit` and :class:`ihm.Entity` (the latter implies that it selects atoms in all instances of that entity). For selecting an entire polymer or residue(s), see :class:`ResidueFeature`. For selecting an entire non-polymer, see :class:`NonPolyFeature`. :param sequence atoms: A list of :class:`ihm.Atom` objects. :param str details: Additional text describing this feature. """ type = 'atom' def __init__(self, atoms, details=None): self.atoms, self.details = atoms, details _ = self._get_entity_type() def _get_entity_type(self): def _get_entity(residue): return residue.entity if residue.entity else residue.asym.entity types = frozenset(_get_entity(a.residue).type for a in self.atoms) if len(types) > 1: raise ValueError("%s cannot span both polymeric and " "non-polymeric entities" % self) elif types: return tuple(types)[0]
[docs] class NonPolyFeature(Feature): """Selection of one or more non-polymers from the system. To select individual atoms from a non-polymer, see :class:`AtomFeature`. Features can include both :class:`ihm.AsymUnit` and :class:`ihm.Entity` (the latter implies that it selects non-polymers in all instances of that entity). :param sequence objs: A list of :class:`ihm.AsymUnit` and/or :class:`ihm.Entity` objects. :param str details: Additional text describing this feature. """ type = 'ligand' def __init__(self, objs, details=None): self.objs, self.details = objs, details _ = self._get_entity_type() def _all_entities_or_asyms(self): return self.objs def _get_entity_type(self): def _get_entity(x): return x if isinstance(x, ihm.Entity) else x.entity if any(_get_entity(r).is_polymeric() for r in self.objs): raise ValueError( "%s can only select non-polymeric entities" % self) else: return _get_entity(self.objs[0]).type if self.objs else None
[docs] class PseudoSiteFeature(Feature): """Selection of a pseudo position in the system. :param site: The pseudo site to use for the feature. :type site: :class:`PseudoSite` """ type = 'pseudo site' def __init__(self, site): self.site = site def _get_entity_type(self): return 'other' def _signature(self): return self.site._signature()
[docs] class GeometricRestraint(Restraint): """A restraint between part of the system and some part of a geometric object. See :class:`CenterGeometricRestraint`, :class:`InnerSurfaceGeometricRestraint`, :class:`OuterSurfaceGeometricRestraint`. :param dataset: Reference to the data from which the restraint is derived. :type dataset: :class:`~ihm.dataset.Dataset` :param geometric_object: The geometric object to restrain against. :type geometric_object: :class:`ihm.geometry.GeometricObject` :param feature: The part of the system to restrain. :type feature: :class:`Feature` :param distance: Restraint on the distance. :type distance: :class:`DistanceRestraint` :param float harmonic_force_constant: Force constant, if applicable. :param bool restrain_all: If True, all distances are restrained. """ object_characteristic = 'other' assembly = None # no struct_assembly_id for geometric restraints def _get_report(self): return ("Distance (%s) to %s" % (self.distance.restraint_type, self.geometric_object.type)) def __init__(self, dataset, geometric_object, feature, distance, harmonic_force_constant=None, restrain_all=None, pseudo1=None, pseudo2=None): self.dataset = dataset self.geometric_object, self.feature = geometric_object, feature self.distance, self.restrain_all = distance, restrain_all self.harmonic_force_constant = harmonic_force_constant _all_features = property(lambda self: (self.feature,))
[docs] class CenterGeometricRestraint(GeometricRestraint): """A restraint between part of the system and the center of a geometric object. See :class:`GeometricRestraint` for a description of the parameters. """ object_characteristic = 'center'
[docs] class InnerSurfaceGeometricRestraint(GeometricRestraint): """A restraint between part of the system and the inner surface of a geometric object. See :class:`GeometricRestraint` for a description of the parameters. """ object_characteristic = 'inner surface'
[docs] class OuterSurfaceGeometricRestraint(GeometricRestraint): """A restraint between part of the system and the outer surface of a geometric object. See :class:`GeometricRestraint` for a description of the parameters. """ object_characteristic = 'outer surface'
[docs] class DerivedDistanceRestraint(Restraint): """A restraint between two parts of the system, derived from experimental data. :param dataset: Reference to the data from which the restraint is derived. :type dataset: :class:`~ihm.dataset.Dataset` :param feature1: The first part of the system to restrain. :type feature1: :class:`Feature` :param feature2: The second part of the system to restrain. :type feature2: :class:`Feature` :param distance: Restraint on the distance. :type distance: :class:`DistanceRestraint` :param float probability: Likelihood that restraint is correct (0. - 1.) :param bool restrain_all: If True, all distances are restrained. :param float mic_value: Value of the Maximal Information Coefficient (MIC) for this interaction, if applicable. """ assembly = None # no struct_assembly_id for derived distance restraints def __init__(self, dataset, feature1, feature2, distance, probability=None, restrain_all=None, mic_value=None): self.dataset = dataset self.feature1, self.feature2 = feature1, feature2 self.distance, self.restrain_all = distance, restrain_all self.probability = probability self.mic_value = mic_value _all_features = property(lambda self: (self.feature1, self.feature2))
[docs] class PredictedContactRestraint(Restraint): """A predicted contact between two parts of the system, derived from various computational tools. :param dataset: Reference to the data from which the restraint is derived. :type dataset: :class:`~ihm.dataset.Dataset` :param resatom1: The first residue or atom to restrain. :type resatom1: :class:`ihm.Residue` or :class:`ihm.Atom` :param resatom2: The second residue or atom to restrain. :type resatom2: :class:`ihm.Residue` or :class:`ihm.Atom` :param distance: Restraint on the distance. :type distance: :class:`DistanceRestraint` :param bool by_residue: If True, the restraint is applied to specific residues; otherwise, it is applied to the closest primitive object with the highest resolution. :param float probability: Likelihood that restraint is correct (0. - 1.) :param software: The software used to generate the contact. :type software: :class:`~ihm.Software` """ assembly = None # no struct_assembly_id for predicted contact restraints def __init__(self, dataset, resatom1, resatom2, distance, by_residue, probability=None, software=None): self.dataset = dataset self.resatom1, self.resatom2 = resatom1, resatom2 self.distance, self.by_residue = distance, by_residue self.probability, self.software = probability, software
[docs] class HDXRestraint(Restraint): """A restraint derived from Hydrogen-Deuterium Exchange experiments. :param dataset: Reference to the data from which the restraint is derived. :type dataset: :class:`~ihm.dataset.Dataset` :param feature: The part of the system to restrain. :type feature: :class:`Feature` :param float protection_factor: Unitless scaling factor. :param str details: Additional details regarding the restraint. """ assembly = None # no struct_assembly_id for HDX restraints def __init__(self, dataset, feature, protection_factor=None, details=None): self.dataset, self.feature = dataset, feature self.protection_factor = protection_factor self.details = details _all_features = property(lambda self: (self.feature,))
[docs] class HydroxylRadicalRestraint(Restraint): """Hydroxyl radical footprinting restraint on a residue. :param dataset: Reference to the data from which the restraint is derived. :type dataset: :class:`~ihm.dataset.Dataset` :param residue: The residue to restrain. :type residue: :class:`ihm.Residue` :param float predicted_sasa: The predicted solvent accessible surface area. :param float rate: The footprinting rate. :param float rate_error: The error in the footprinting rate. :param float log_pf: Log (base 10) of the protection factor. :param float log_pf_error: The error in the base 10 log of the protection factor. :param software: The software used to obtain the restraint. :type software: :class:`~ihm.Software` """ assembly = None # no struct_assembly_id for hydroxyl radical restraints def __init__(self, dataset, residue, predicted_sasa, rate=None, rate_error=None, log_pf=None, log_pf_error=None, software=None): self.dataset = dataset self.residue = residue self.predicted_sasa = predicted_sasa self.rate, self.rate_error = rate, rate_error self.log_pf, self.log_pf_error = log_pf, log_pf_error self.software = software
[docs] class ProbeType: """Information about the chemistry of a probe, e.g. as used in an EPR experiment. These objects are used in :class:`ConjugateProbe` or in :class:`LigandProbe`. :param str name: Author-provided name for the probe. :param bool intrinsic: True if the probe is an intrinsic part of the biomolecule, False if it has been synthentically introduced. :param bool covalent: True if the probe is covalently linked to a particular residue in the polymeric macromolecule, or False for non-covalently-linked (ligand) probes. :param bool reactive: True iff the probe has a reactive form. :param str reactive_name: Author-provided name for the reactive probe. :param reactive_descriptor: The chemical descriptor of the reactive probe, if available and applicable. :type reactive_descriptor: :class:`ihm.ChemDescriptor` :param descriptor: The chemical descriptor of the probe, if available. :type descriptor: :class:`ihm.ChemDescriptor` """ def __init__(self, name, intrinsic, covalent, reactive, reactive_name=None, reactive_descriptor=None, descriptor=None): self.name, self.intrinsic = name, intrinsic self.covalent, self.descriptor = covalent, descriptor self.reactive = reactive self.reactive_name = reactive_name self.reactive_descriptor = reactive_descriptor _probe_origin_map = {True: 'intrinsic', False: 'extrinsic'} _probe_link_map = {True: 'covalent', False: 'ligand'} _probe_origin = property( lambda s: s._probe_origin_map.get(s.intrinsic, s.intrinsic)) _probe_link_type = property( lambda s: s._probe_link_map.get(s.covalent, s.covalent))
[docs] class ProbePosition: """A specific residue position where probes are covalently attached. See also :class:`ConjugateProbe`. :param residue: The residue where the probes are attached. :type residue: :class:`ihm.Residue` :param bool mutated: True iff the residue is mutated. :param bool modified: True iff the residue is chemically modified. :param mutated_chem_comp: The chemical component of the mutated residue, if available and applicable. :type mutated_chem_comp: :class:`ihm.ChemComp` :param modified_descriptor: The chemical descriptor of the modified residue, if available and applicable. :type descriptor: :class:`ihm.ChemDescriptor` :param str description: Additional information about the position. """ def __init__(self, residue, mutated, modified, mutated_chem_comp=None, modified_descriptor=None, description=None): self.residue = residue self.mutated, self.modified = mutated, modified self.mutated_chem_comp = mutated_chem_comp self.modified_descriptor = modified_descriptor self.description = description
[docs] class Probe: """Base class for all probes, e.g. as used in EPR experiments. Use a subclass, such as :class:`ConjugateProbe` or :class:`LigandProbe`. See also :class:`EPRRestraint`. These objects should be added to :attr:`ihm.System.probes`. """ pass
[docs] class ConjugateProbe(Probe): """Details of a probe that is covalently attached to a residue. These objects should be added to :attr:`ihm.System.probes`. :param probe_type: Information about the probe's chemistry. :type probe_type: :class:`ProbeType` :param position: Identifies where the probe is attached. :type position: :class:`ProbePosition` :param dataset: The experimental dataset corresponding to the probe. :type dataset: :class:`~ihm.dataset.Dataset` :param descriptor: The chemical descriptor of the polymeric residue conjugate with the probe. :type descriptor: :class:`ihm.ChemDescriptor` :param bool ambiguous_stoichiometry: Whether there is ambiguity regarding the stoichiometry of the labeled site. :param float probe_stoichiometry: The stoichiometry of the probe labeling site, if known. :param str details: Additional details regarding the conjugate. """ def __init__(self, probe_type, position, dataset, descriptor=None, ambiguous_stoichiometry=None, probe_stoichiometry=None, details=None): self.probe_type, self.position = probe_type, position self.dataset, self.descriptor = dataset, descriptor self.ambiguous_stoichiometry = ambiguous_stoichiometry self.probe_stoichiometry = probe_stoichiometry self.details = details
[docs] class LigandProbe(Probe): """Details of a probe that is a non-polymeric entity (ligand). These objects should be added to :attr:`ihm.System.probes`. :param probe_type: Information about the probe's chemistry. :type probe_type: :class:`ProbeType` :param entity: The entity of the ligand. :type entity: :class:`ihm.Entity` :param dataset: The experimental dataset corresponding to the probe. :type dataset: :class:`~ihm.dataset.Dataset` :param str details: Additional details regarding the probe. """ def __init__(self, probe_type, entity, dataset, details=None): self.probe_type, self.entity = probe_type, entity self.dataset, self.details = dataset, details
[docs] class EPRRestraint(Restraint): """Restrain part of the system to match electron paramagnetic resonance (EPR) data. See also :class:`Probe`. :param dataset: Reference to the EPR data. :type dataset: :class:`~ihm.dataset.Dataset` :param str fitting_particle_type: The type of particle fit to the EPR data. :param str fitting_method: The method used to fit the model to the EPR data. :param fitting_method_citation: The publication describing the fitting method. :type fitting_method_citation: :class:`~ihm.Citation` :param bool multi_state: Whether multiple state fitting was done. :param software: The software used to perform the fitting. :type software: :class:`~ihm.Software` :param str details: Additional details regarding the fitting. """ assembly = None # no struct_assembly_id for EPR restraints def __init__(self, dataset, fitting_particle_type=None, fitting_method=None, fitting_method_citation=None, multi_state=None, software=None, details=None): self.dataset = dataset self.fitting_particle_type = fitting_particle_type self.fitting_method = fitting_method self.fitting_method_citation = fitting_method_citation self.multi_state = multi_state self.software, self.details = software, details #: Information about the fit of each model to this restraint's data. #: This is a Python dict where keys are :class:`~ihm.model.Model` #: objects and values are :class:`EPRRestraintFit` objects. self.fits = {}
[docs] class EPRRestraintFit: """Information on the fit of a model to an :class:`EPRRestraint`. See :attr:`EPRRestaint.fits`. :param float chi_value: The chi value resulting from fitting the model to the EPR data. """ __slots__ = ["chi_value"] # Reduce memory usage def __init__(self, chi_value=None): self.chi_value = chi_value