Definition
The overall pLDDT energy is the negated mean pLDDT over all residues in the structure.
EpLDDT=−N1α∑pLDDTα
- N is the total number of residues in the structure
- pLDDTα is the predicted local distance difference test score for residue α
Parameters
The oracle to use for the energy term.
The weight of the energy term.
Optional name to append to the energy term name.
Example
import bagel as bg
# Create the folding oracle
esmfold = bg.oracles.ESMFold()
# Create the energy term
overall_plddt = bg.energies.OverallPLDDTEnergy(
oracle=esmfold,
weight=1.0,
)
# Add to a state
state = bg.State(
chains=[chain],
energy_terms=[overall_plddt],
name="my_state",
)