foldx.stab()

Description

Computes Folding Free Energy (\Delta G_{fold}).

Usage

foldx.stab(pdb, pH = 7, I = 0.05)

Arguments

pdb the 4-letter identifier of a PDB structure or the path to a PDB file.

pH a numeric value between 0 and 14.

I a value indicating the molar ionic strength.

Value

The function computes and returns the ΔG (kcal/mol) of the folding process of the requested protein.

References

Schymkowitz et al (2005) Nucl. Ac. Res. 33:W382-W388.

Details

Thermodynamic stability is a fundamental property of proteins that influences protein structure, function, expression, and solubility. Not surprinsinly, prediction of the effect of point mutations on protein stability is a topic of great interest in many areas of biological research, including the field of protein post-translational modifications. Consequentely, a wide range of strategies for estimating protein energetics has been developed. In the package ptm we have implemented several commands of the FoldX suite. One of these FoldX’s commands is Stability that is implemented in the function foldx.stab(). This function computes the ΔG, in kcal/mol, of the folding process.

Therefore, the more negative this values is, the more stable the protein is. Nevertheless, we must be cautions when using foldx.stab() because \Delta G_{fold} is calculated as the difference in Gibbs free energy between the detailed 3D structure (provided by the argument pdb) and a hypothetical unfolded reference state of which no structural detail is available. Thus, the algorithm is based on the assumption that in the denatured state there is absence of persistent structure, which in a range of proteins proteins has been experimentally shown to be only partly correct. Therefore, the values provided by foldx.stab() should not be considered as absolute since they could have large error. That is not the case when we use other FoldX base functions such as foldx.mutant() or foldx.assembly(), where the change in free energy is calculated between two well-defined structures.

Since the functions based on FoldX commands show the highest accuracy when the energy difference can be calculated, foldx.stab() may be useful to compare the thermodynamic stability of two conformations of the same protein. For instance, Calmodulin (CaM) is a multifunctional calcium-binding protein expressed in all eukaryotic cells. The binding of the secondary messenger Ca2+ to CaM changes the CaM conformation and its affinity for its various targets. In a Ca2+ free medium, CaM exhibits a spatial conformation corresponding to the so-called apoCaM (PDB ID: 1CFD). On the other hand, when CaM binds two Ca2+ ions, the protein adopts a different spatial conformation corresponding to the holoCaM (PDB ID: 1CLL). We can compute the change in Gibbs free energy for the conformational change from apoCaM to holoCaM using foldx.stab() as indicated in the next figure.

To perform this calculations we can run the following chunk:

apo <- foldx.stab('1cfd')
holo <- foldx.stab('1cll')
G_conf <- holo - apo
G_conf
## [1] -46.2534
## attr(,"pdb")
## [1] "1cll"
## attr(,"units")
## [1] "kcal/mol"

The function foldx.stab() also allows us to illustrate the effect of the ionic strength on the stability of proteins. To this end we will use bacteriophage T4 lysozyme (7LZM). Electrostatic interactions, also known as salt bridges or ionic interactions, are formed between groups found in basic (Arg, Lys and His) and acidic (Glu, Asp) residues of proteins at neutral pH. In the figure below the basic (blue) and acidic (red) amino acids find in lysozyme are show as a mesh.

The strength of these interactions is given by the Coulomb’s law:

F = \frac{1}{D} \frac{q_1 q_2}{r^2}

where q_1 and q_2 are the charges of the ionized groups, r is the distance between them and D is the dielectric constant (the higher the ionic strength the greater the dielectric constant). Thus, we are entitled to conclude that at low ionic strength the salt bridges are stronger than at hight ionic strength, and vice versa.

Next we compute and plot the thermodynamic stability of lysozyme at high, medium and low ionic strengths:

high <- foldx.stab("7lzm", I = 1)
medium <- foldx.stab("7lzm", I = 0.05) 
low <- foldx.stab("7lzm", I = 0.0001)

I <- c(1, 0.05, 0.0001)
DG <- c(high, medium, low)
plot(-log(I),DG, ty = "b", ylab = expression(paste(Delta, 'G ', "(kcal/mol)")))

At low ionic strength the stability is higher (ΔG = -18 kcal/mol) than at high ionic strength (ΔG = -13.8 kcal/mol), which may be in line with stronger salt bridges, although this sort of simple interpretations are a risky business when dealing with protein stability!