ChimeraX docs icon

ChimeraX Tutorial: MOLE Channel Coloring by Property

last updated November 2022

This tutorial demonstrates how to color a channel computed by the MOLEonline Server to show various properties: channel radius, molecular lipophilic potential, and electrostatic potential. See also: MOLEonline feature highlight, ChimeraX recipe for CAVER display

coloring by radius
radius
coloring by MLP
lipophilicity
coloring by ESP
electrostatics

Background and Setup

This tutorial uses Protein Data Bank entry 1bl8, a structure of the potassium channel. The MOLEonline Server was run in “pore mode” on this structure (details... ) and results were downloaded in JSON format. Save the file molepore-1bl8.json to a convenient (findable) location on your computer.

Start ChimeraX version 1.5 or newer. If you want to use the click-to-execute links, view this page in the ChimeraX Browser, e.g. by entering the ChimeraX command:

Commandopen https://www.rbvi.ucsf.edu/chimerax/data/mole-channel/mole-channel.html

Open the structure:

Commandopen 1bl8

The Log reports that the structure contains protein chains A-D and potassium-ion “residues” named K. The protein is opened as model #1 and displayed as cartoons, with atomic detail only near the ions.

If you wish, review how to move structures (part of the Binding Sites tutorial). Feel free to rotate, translate, and zoom as you like throughout.

Hide the atoms and show the cartoons as thin tubes:

Commandhide #1
Commandcartoon style width .5 thick .5

Change the background color and show silhouette outlines. The depthJump parameter controls what change in depth triggers drawing an outline; smaller values give more outlines.

Commandset bgColor light cyan
Commandgraphics sil true depth .01

If you wish, switch from perspective projection, in which farther-away objects appear smaller, to orthographic projection, in which they do not:

Commandcamera ortho

Next, use the ChimeraX file browser to open the JSON file of MOLE results:

Commandopen browse

(locate and open the previously downloaded file, molepore-1bl8.json)

The file contains a single channel, opened in ChimeraX as a set of spheres. The protein structure is model #1, and the channel spheres are model #2. Select the narrowest parts of the channel (spheres with radius <2 Å), show protein residues near those parts, and then clear the selection:

Commandsel #2 & @@radius<2
Commandshow protein & sel :<2.5
Commandsize stickrad .4
Command~sel

This only displays atoms in the sidechains of the residues, which happen to be pointing away from the channel. By default, showing the cartoon (ribbon) for a residue suppresses the display of its backbone atoms, but you can turn off this suppression:

Commandcartoon suppressBackbone false

The backbone atoms of the displayed residues (Val 76 and Gly 77 in each chain) form the “selectivity filter” that favors the passage of K+ over Na+, Cl, etc.

If you look closely at the channel model, you can see ridges between the different spheres. For a smoother appearance, show the model as a surface and hide the underlying spheres:

Commandsurf #2
Commandhide #2
channel coloring by radius

Coloring by Channel Radius

The spheres are essentially dummy atoms, and they have an attribute named radius. The channel surface can be colored by these attribute values:

Commandcolor byattribute radius #2 palette puor

Many palettes are available, including the ColorBrewer palette PuOr (orange → white → purple). Alternatively, a custom palette can be specified as a series of color names (details...).

Commandcolor byattribute radius #2 palette darkslateblue:red:yellow

channelcoloring by MLP

Coloring by Protein Lipophilicity

The molecular lipophilic potential (MLP) is calculated from the atoms of a protein. In many cases, a structure is missing the coordinates of some atoms, which may affect the results. You can identify truncated residues with the template-mismatch specifier, for example:

Commandsel template-mismatch
Commandlabel sel height 2

The Log reported that 24 residues were selected, and you can see from the labels that they occur all over the structure.

Command~sel; label delete

In this case, whether the truncated residues are repaired makes little difference to the coloring of the channel surface by lipophilicity or electrostatics (below). However, if you do want to repair them, it can be done with the dockprep command, which also adds hydrogens. If you do not want to repair the sidechains, skip the next two commands:

Commanddockprep #1
Commandhide H

Color the surface of the channel (#2) by the protein's MLP:

Commandmlp protein surfaces #2

First generating the surface of the channel (Commandsurf #2 as done in the setup) is crucial to coloring the channel by lipophilicity or electrostatic potential. The spheres themselves will not be colored.

channel coloring by ESP

Coloring by Protein Electrostatic Potential

The electrostatic potential (ESP) is calculated from the atoms of the protein. If not done already, you can optionally repair any truncated sidchains as described above.

Calculate the protein's ESP and color the channel surface (#2) by its values:

Commandcoulombic protein surfaces #2 offset -1

The default palette for ESP coloring is red for negative, white neutral, and blue for positive. The predominance of red in the makes sense for a channel that is selective for positively charged K+ ions.

A negative offset was used to show the potential inside the channel surface. For the usual case of coloring a protein surface by its own potential, a positive offset (default 1.4 Å) is used to show the potential outside the surface, where interactions with other molecules would occur. The protein surface shows a full range of positive to negative values:

protein coloring by ESP protein coloring by ESP, chain A hidden
Commandcoulombic protein

Use a lighting preset with ambient occlusion to better show the shape of the surface:

Commandlight soft

Lighting from multiple directions (default 64, maximum 1024) is used to approximate ambient occlusion. A higher number of directions gives smoother gradations in shading, but may slow rendering on larger systems:

Commandlight multi 256

You can hide one of the protein chains to see the channel surface inside:

Commandhide /A targ acs

MOLEonline Server Steps

This tutorial includes the JSON file of MOLE results (molepore-1bl8.json), so you do not need to do the following unless you want to generate such a file yourself.

  1. Go to the MOLEonline Server
  2. Enter PDB ID 1bl8 in the form and click Next
  3. The server will initialize and show a view with a rotatable 3D view of the structure and additional options; in that page click the Switch to Pore mode button on the right and then the Submit button at the bottom
  4. When the results appear on the structure (typically a few seconds), use the Download menu near the top to choose JSON format
  5. You can rename the downloaded file if you wish, although keeping the “.json” suffix at the end of the name is recommended

UCSF Resource for Biocomputing, Visualization, and Informatics / November 2022