8 Mapping mutation effects onto structures
- Visualise predicted protein structures from AlphaFold Database.
- Inspect model confidence using pLDDT and PAE scores.
- Load and explore protein annotations from UniProt.
- Map AlphaMissense mutation scores onto protein structures.
- Interpret how structural context influences mutation sensitivity.
8.1 Functional mutation consequences
Mutations can affect proteins in many different ways.
A missense mutation replaces one amino acid with another. The impact of such mutations depends strongly on where they occur in the protein structure.
For example, mutations may disrupt:
- ligand-binding sites
- protein-protein interfaces
- DNA-binding regions
- the structural core of the protein
Residues involved in these functions are often less tolerant to mutation, because changes can destabilise the structure or disrupt key interactions.
Mapping mutation sensitivity onto protein structures therefore helps identify functionally important regions.
8.2 Preparing the structure
Following from the model comparison chapter, we will use the human protein SLC52A2 (UniProt ID: Q9HAB3). As a reminder, this is a membrane transporter for vitamin B2 (riboflavin), and mutations in this protein can cause a childhood-onset neurological disorder called Brown-Vialetto-Van Laere syndrome.
We begin by loading the predicted structure from the AlphaFold Database:
alphafold fetch Q9HAB3 version 6In this command we explicitly specify the model version. This ensures that we retrieve the correct version of the prediction, but you should always check what the latest version available is.
We can also load the corresponding PAE matrix:
alphafold pae #1 palette paegreen uniprotId Q9HAB3 version 68.2.1 Adding UniProt annotations
Structural information is often easier to interpret alongside functional annotations. ChimeraX can retrieve UniProt annotations directly:
open Q9HAB3 from uniprot format uniprotThis opens a sequence annotation panel showing features such as:
- functional domains
- transmembrane regions
- experimentally observed variants
- binding sites
Clicking a feature in the panel will highlight the corresponding residues in the structure.
Combining structural and functional annotations helps identify regions likely to be sensitive to mutation.
8.3 AlphaMissense mutation scores
The AlphaMissense model predicts the likely functional impact of every possible amino acid substitution in a protein. For each possible mutation, the model assigns a score between 0 and 1:
- values near 0 suggest the mutation is likely benign
- values near 1 suggest the mutation is likely deleterious
These scores can be loaded directly in ChimeraX.
open Q9HAB3 from alpha_missense format amissThe scores are loaded and a histogram showing the distribution of mutation impact scores opens on the side.
We can add a label to each residue displaying the mutation impact score for every possible mutation:
mutationscores label #1 amiss height 3 palette blueredThis view can be useful to look at the impact of specific mutations in each residue. However, it doesn’t give a good overall view of the mutational sensitivity across the protein.
We can remove the labels with:
label delete8.3.1 Summarising scores
Because each residue can mutate to many different amino acids, it is often useful to summarise these predictions. For example, we can compute the average predicted mutation effect per residue:
mutationscores define avg fromScore amiss setAttribute true combine mean mutationSet Q9HAB3This creates a new residue attribute called avg. We can then map these scores onto the structure:
color byattribute r:avg palette bluered key true range 0,1
cartoon byattribute r:avg- blue residues with a thinner cartoon representation are more tolerant to mutation
- red residues with a thicker cartoon representation are predicted to be highly sensitive to mutation
Mapping mutation sensitivity onto the structure provides insight into which regions of the protein are structurally or functionally constrained. These regions often correspond to:
- catalytic residues
- ligand-binding pockets
- protein interaction interfaces
- structurally critical elements of the fold
When working with multiple AlphaMissense scores, it’s important to either close ChimeraX or close the mutation scores explicitly to avoid confusion between different datasets.
mutationscores close8.4 Exercises
8.5 Summary
The functional impact of mutations often depends on their structural location.
- Variants occurring in conserved structural regions are more likely to affect protein stability or function.
Computational tools such as AlphaMissense can help prioritise mutations for further study.
AlphaMissense scores can be imported into ChimeraX using:
open <UniProt_ID> from alpha_missense format amiss.Scores can be summarised using
mutationscores defineand mapped onto the structure usingcolor byattributeandcartoon byattribute.