
This procedure can get as complex as one likes, but always follows the same
pattern.
The main advantage of numerical methods and a high-level programming
language consists in its flexibility. One can calculate the concentration dependence
of any complex or any set of complexes. For example, fluorescence resonance
energy transfer (FRET) is specific for the interaction of ligand and inhibitor and can
be employed to study its mechanism [2]. Part of the signal often is proportional to
the concentrations of ternary complexes, where both types of ligands are bound to
the receptor simultaneously. Modifying the program EQ3.m and plotting the
ternary complexes versus the substrate concentration is performed with the program
EQ3b.m and the statements below:
In line 56 the mixed ternary complexes IRL and LRI are added, because they
show the same dependence on inhibitor and ligand concentr ation. The function max
() in lines 57 and 61 is worth mentioning. For a matrix, it returns the maximal
values for each column in a matrix. Therefore, the result of line 56 is a row vector
MA with the maximal values of mix calculated at the five different inhibitor
concentrations. For a vector argument, the function max in line 61 simply returns
the maximal value so that max(MA) is the maximal value of all ternary complexes
at all inhibitor concentrations. The resulting plot is shown in Fig. 5.6.
The concentrations of the ternary complexes IRL and LRI alike depend on both
the ligand and the inhibitor concentrations. At high ligand concentration, the ligand
competes with the inhibitor and forms LRL, and at high inhibitor concentrations,
the inhibitor mainly binds as IRI. Therefore, the concentration dependence of the
ternary complexes is not easy to predict and has to be calculated. Note the circles on
the x-axis. They should correspond to the concentration of ternary complexes in the
absence of inhibitor and should all be zero. With the numerical solution returned
from the Octave algorithm, some were slightly negative and thus could not be
plotted within the axes defined in line 61. This problem had been addressed in
Fig. 5.2 and disc ussed in Sect. 2.6.
5.5 Allosteric Interactions of Subunits (EQ4.m)
The term “allosteric” is used differently in the literature [3]. For most cases today, it
states that a ligand may bind to a protein and elicit a conformational change . This
change may then change the properties of the protein at another (“allosteric”) site.
In contrast, the concerted model for oxygen binding to hemoglobin of Monod,
Wyman and Changeux [4] (“MWC” model) concerns the allosteric interactions of
5.5 Allosteric Interactions of Subunits (EQ4.m) 57