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
| pLDDT Score | Interpretation | Typical Usage |
|---|---|---|
| 90-100 | Very high confidence | Well-ordered regions, reliable for detailed analysis |
| 70-90 | Confident | Generally accurate, suitable for most applications |
| 50-70 | Low confidence | Use with caution, may be flexible/disordered |
| < 50 | Very low confidence | Likely disordered, unreliable coordinates |
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.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
| pTM Score | Interpretation |
|---|---|
| > 0.8 | Very confident, high-quality prediction |
| 0.5-0.8 | Decent confidence, likely correct overall fold |
| < 0.5 | Low confidence, fold may be incorrect |
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
| ipTM Score | Interpretation | Action |
|---|---|---|
| > 0.8 | Confident, high-quality interface | Trust binding mode |
| 0.6-0.8 | Uncertain region | Verify with experiments |
| < 0.6 | Low confidence | Likely incorrect interface |
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
Ranking Score
A composite score combining multiple metrics:Components
Interface confidence (0-1) - weighted 0.8
Overall structure confidence (0-1) - weighted 0.2
Fraction disordered (0-1) - penalizes spurious helices (+0.5)
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
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
Visual Inspection
Load structure colored by pLDDT (B-factor)
- Blue regions (>90): High confidence
- Red regions (<50): Disordered/uncertain
Interface Analysis
Examine PAE plot
- Low PAE blocks between chains: Good interface
- High PAE: Uncertain interaction
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
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