Skip to main content

Overview

AlphaFold 3 provides multiple confidence metrics to assess prediction quality. These metrics help you understand:
  • Local accuracy: How confident is each atom/residue?
  • Global accuracy: Is the overall fold correct?
  • Interface quality: Are chain-chain interactions accurate?
  • Relative positions: How accurate are token-token distances?
Similar to AlphaFold 2 and AlphaFold-Multimer, but with enhanced metrics for ligands, nucleic acids, and multi-chain complexes.

pLDDT: Per-Atom Confidence

predicted Local Distance Difference Test

Range: 0-100 (higher = more confident)Granularity: Per-atom (more detailed than AlphaFold 2’s per-residue)What it measures: Predicted accuracy of local structure

Understanding pLDDT Values

Accessing pLDDT Values

In the confidences JSON:

Visualization

Most structure viewers can color by B-factor. AlphaFold 3 stores pLDDT in the B-factor column:
PyMOL

PAE: Predicted Aligned Error

Positional Uncertainty

Range: 0-32 Ångströms (lower = more confident)Granularity: Per-token pairWhat it measures: Error in relative position/orientation between two tokens

How PAE Works

PAE(i, j) estimates the error in token j’s position when the structure is aligned using token i’s coordinate frame.
1

Alignment

Align predicted structure to true structure using token i’s frame
2

Measurement

Measure positional error of token j after alignment
3

Prediction

PAE predicts this error in Ångströms

Interpreting PAE Plots

PAE is visualized as a 2D heatmap where both axes represent token indices.
Low PAE (dark blue): Confident in relative positions
  • Diagonal blocks: Well-structured domains
  • Off-diagonal blocks: Confident interfaces/contacts
High PAE (yellow/red): Uncertain relative positions
  • Between domains: Flexible linkers
  • Between chains: Uncertain/no interaction

Frame Construction

Frames constructed from backbone atoms:
  • Proteins: Same as AlphaFold 2 (Cα, N, C)
  • Nucleic acids: Backbone phosphate groups

Accessing PAE Values

In the confidences JSON:

Use Cases

Domain Organization

Low within-domain PAE, high between-domain PAE suggests multi-domain protein with flexible linkers

Interaction Confidence

Low off-diagonal PAE between chains indicates confident protein-protein interface

Binding Assessment

High PAE between protein and ligand suggests uncertain binding pose

Relative Orientation

PAE reveals which regions have well-defined spatial relationships

pTM: Predicted Template Modeling Score

Global Structure Confidence

Range: 0-1 (higher = more confident)Granularity: Global scalarWhat it measures: Accuracy of entire predicted structure

Interpretation Guidelines

TM-Score Background

The Template Modeling score measures structural similarity: TM-score=max[1Li=1L11+(di/d0)2]\text{TM-score} = \max \left[ \frac{1}{L} \sum_{i=1}^{L} \frac{1}{1 + (d_i / d_0)^2} \right] Where:
  • L: Length of target sequence
  • d_i: Distance between aligned residues
  • d_0: Normalization factor (length-dependent)

Accessing pTM

In summary confidences JSON:

ipTM: Interface Predicted TM Score

Interface Quality

Range: 0-1 (higher = more confident)Granularity: Global or per-chain-pairWhat it measures: Accuracy of predicted interfaces between chains

Interpretation Guidelines

ipTM only considers inter-chain interactions. For single-chain predictions, use pTM instead.

Types of ipTM Metrics

Overall confidence in all interfaces:
Use for ranking predictions of the full complex.

Ranking Strategies

1

Full Complex

Use global iptm or composite ranking_score
2

Specific Interface

Use chain_pair_iptm[i][j] for known interacting chains i and j
3

Specific Chain

Use chain_iptm[i] when you care about chain i’s interactions but don’t know partners
4

Chain Structure

Use chain_ptm[i] when only the structure of chain i matters

Ranking Score

A composite score combining multiple metrics:
Use ranking_score ONLY for ranking predictions, not for absolute quality assessment.

Components

number
Interface confidence (0-1) - weighted 0.8
number
Overall structure confidence (0-1) - weighted 0.2
number
Fraction disordered (0-1) - penalizes spurious helices (+0.5)
boolean
Significant clashing atoms - strong penalty (-100)

When to Use

  • Selecting best prediction from multiple samples
  • Comparing predictions with same input
  • Automated prediction pipelines
  • Initial filtering before manual inspection

Additional Metrics

Contact Probabilities

Probability that two tokens are within 8Å (representative atoms). Use cases:
  • Identifying likely contacts before structure determination
  • Assessing binding likelihood
  • Filtering potential interfaces

Chain-Pair PAE Min

Lowest PAE value from chain i to chain j.
Correlates with binding: Low chain_pair_pae_min between chains suggests they interact. Can distinguish binders from non-binders.

Disorder Fraction

Fraction of structure classified as disordered (0-1), measured by accessible surface area. Interpretation:
  • High disorder: Flexible regions, loops, or prediction artifacts
  • Used in ranking score to penalize spurious helices

Clash Detection

Boolean indicating significant clashing atoms:
  • More than 50% of any chain has clashes, OR
  • More than 100 clashing atoms in any chain
Action: If true, consider re-running with different seeds or inspect manually.

Practical Guidelines

1

Initial Assessment

Check ranking_score, ptm, and iptm in summary JSON
  • pTM > 0.5: Likely correct fold
  • ipTM > 0.8: Confident interface
  • has_clash = false: No major issues
2

Visual Inspection

Load structure colored by pLDDT (B-factor)
  • Blue regions (>90): High confidence
  • Red regions (<50): Disordered/uncertain
3

Interface Analysis

Examine PAE plot
  • Low PAE blocks between chains: Good interface
  • High PAE: Uncertain interaction
4

Chain-Specific Quality

Check per-chain metrics
  • chain_ptm[i]: Structure of chain i
  • chain_iptm[i]: Chain i’s interfaces
  • chain_pair_pae_min[i][j]: Likely interaction between i and j
5

Domain Analysis

For multi-domain proteins:
  • Low within-domain PAE: Well-structured domains
  • High between-domain PAE: Flexible linkers

Additional Resources

AlphaFold 3 Paper

Detailed description of confidence metrics

EBI Training

Practical guide to confidence scores (AlphaFold 2 focused, still applicable)

Next Steps

Output Format

Learn about output file structure

Performance

Optimize predictions for better results