Skip to main content

Definition

The separation energy is the Euclidean distance between the backbone centroids of two residue groups. Esep=c1c2E_{\mathrm{sep}} = \| \mathbf{c}_1 - \mathbf{c}_2 \|
  • c1\mathbf{c}_1 and c2\mathbf{c}_2 are the centroids of the backbone atoms in residue groups 1 and 2
  • If a custom function ff is provided, the energy becomes Esep=f(c1c2)E_{\mathrm{sep}} = f(\| \mathbf{c}_1 - \mathbf{c}_2 \|)

Parameters

FoldingOracle
required
The oracle to use for the energy term.
tuple[list[Residue], list[Residue]]
required
A tuple containing two lists of residues, those to include in the first [0] and second [1] group.
Callable[[float], float] | None
default:"None"
Optional callable f(x) applied to the centroid distance x (in Å) before weighting. If None, the identity function is used (i.e., energy equals the distance).
bool
default:"True"
If a new residue is added next to a residue included in this energy term, this dictates whether that new residue could then be added to this energy term.
float
default:"1.0"
The weight of the energy term.
str | None
default:"None"
Optional name to append to the energy term name.

Methods

compute

Parameters
OraclesResultDict
required

Example