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
- Confidence Ranges
- Polymer-Specific
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.
- Diagonal blocks: Well-structured domains
- Off-diagonal blocks: Confident interfaces/contacts
- Between domains: Flexible linkers
- Between chains: Uncertain/no interaction
Frame Construction
- Proteins & Nucleic Acids
- Small Molecules
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
- Overall Quality
- Size Considerations
TM-Score Background
The Template Modeling score measures structural similarity: Where:- L: Length of target sequence
- d_i: Distance between aligned residues
- d_0: Normalization factor (length-dependent)
References: Zhang & Skolnick, 2004; Xu & Zhang, 2010
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
Types of ipTM Metrics
- Global ipTM
- Per-Chain ipTM
- Pair-wise ipTM
Overall confidence in all interfaces:Use for ranking predictions of the full complex.
Ranking Strategies
1
Full Complex
Use global
iptm or composite ranking_score2
Specific Interface
Use
chain_pair_iptm[i][j] for known interacting chains i and j3
Specific Chain
Use
chain_iptm[i] when you care about chain i’s interactions but don’t know partners4
Chain Structure
Use
chain_ptm[i] when only the structure of chain i mattersRanking Score
A composite score combining multiple metrics: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
- Use Ranking Score For
- Don't Use Ranking Score For
- Selecting best prediction from multiple samples
- Comparing predictions with same input
- Automated prediction pipelines
- Initial filtering before manual inspection
Additional Metrics
Contact Probabilities
- Identifying likely contacts before structure determination
- Assessing binding likelihood
- Filtering potential interfaces
Chain-Pair PAE Min
Correlates with binding: Low
chain_pair_pae_min between chains suggests they interact. Can distinguish binders from non-binders.Disorder Fraction
- High disorder: Flexible regions, loops, or prediction artifacts
- Used in ranking score to penalize spurious helices
Clash Detection
- More than 50% of any chain has clashes, OR
- More than 100 clashing atoms in any chain
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 ichain_iptm[i]: Chain i’s interfaceschain_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