Spaces:
Runtime error
Runtime error
style: update M0/M/D nomenclature
Browse files- monomer_dimer.ipynb +256 -52
monomer_dimer.ipynb
CHANGED
@@ -17,52 +17,52 @@
|
|
17 |
"source": [
|
18 |
"## Monomer - Dimer kinetics\n",
|
19 |
"\n",
|
20 |
-
"Lets start with the simple example of dimer formation from two identical
|
21 |
"(TODO: mhchem package)\n",
|
22 |
"\n",
|
23 |
"$$\n",
|
24 |
-
"
|
25 |
"$$\n",
|
26 |
"\n",
|
27 |
"From the kinetic scheme above, we can write down the differential equations describing this system. These differential equations tell us how the concentrations of the reaction (in this case dimerization) change in time. \n",
|
28 |
"\n",
|
29 |
"$$\n",
|
30 |
-
"\\frac{\\partial [
|
31 |
"$$\n",
|
32 |
"\n",
|
33 |
"$$\n",
|
34 |
-
"\\frac{\\partial [
|
35 |
"$$\n",
|
36 |
"\n",
|
37 |
-
"Where square brackets are used to indicate the concentration of the species, ie $[
|
38 |
"\n",
|
39 |
"To sanity check our results, we can multiply the second equation with -2, such that both right-hand sides become equal. We then find that:\n",
|
40 |
-
"
|
41 |
"$$\n",
|
42 |
-
"\\frac{\\partial [
|
43 |
"$$\n",
|
44 |
"\n",
|
45 |
-
"When reading the equation above, for the equality to hold true, we find that the dimer $
|
46 |
"\n",
|
47 |
-
"In order to now find which concentrations of monomer and dimer are formed given
|
48 |
"\n",
|
49 |
"First, we are looking for the concentration of the monomer and dimer at _steady-state_: the system has reached equillibrium and no more changes in the concentration of either the monomer or the dimer occur. This means we can set both differential equations to zero. \n",
|
50 |
"\n",
|
51 |
-
"Second, we realize that the total amount of
|
52 |
"\n",
|
53 |
"$$\n",
|
54 |
-
"[
|
55 |
"$$\n",
|
56 |
"\n",
|
57 |
-
"
|
58 |
"\n",
|
59 |
-
"Third, we need to have some value for the forward $
|
60 |
"\n",
|
61 |
"$$\n",
|
62 |
"K_d = \\frac{k_{off}}{k_{on}}\n",
|
63 |
"$$\n",
|
64 |
"\n",
|
65 |
-
"If we look at our differential equations, the left-hand side describes the change of concentration of the monomer over time. The units are therefore molar per second (
|
66 |
]
|
67 |
},
|
68 |
{
|
@@ -74,13 +74,13 @@
|
|
74 |
},
|
75 |
{
|
76 |
"cell_type": "code",
|
77 |
-
"execution_count":
|
78 |
"metadata": {},
|
79 |
"outputs": [],
|
80 |
"source": [
|
81 |
"import sympy as sp\n",
|
82 |
"\n",
|
83 |
-
"
|
84 |
]
|
85 |
},
|
86 |
{
|
@@ -92,17 +92,30 @@
|
|
92 |
},
|
93 |
{
|
94 |
"cell_type": "code",
|
95 |
-
"execution_count":
|
96 |
"metadata": {},
|
97 |
-
"outputs": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
"source": [
|
99 |
"sol = sp.solve(\n",
|
100 |
" [\n",
|
101 |
-
" -2 * k_on *
|
102 |
-
"
|
103 |
" (k_off / k_on) - kD,\n",
|
104 |
" ],\n",
|
105 |
-
" [
|
106 |
" dict=True,\n",
|
107 |
")\n",
|
108 |
"sol"
|
@@ -117,37 +130,51 @@
|
|
117 |
},
|
118 |
{
|
119 |
"cell_type": "code",
|
120 |
-
"execution_count":
|
121 |
"metadata": {},
|
122 |
-
"outputs": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
"source": [
|
124 |
-
"sol[0][
|
125 |
]
|
126 |
},
|
127 |
{
|
128 |
"cell_type": "markdown",
|
129 |
"metadata": {},
|
130 |
"source": [
|
131 |
-
"We can see that indeed the solution only depends on the dissociation constant $K_D$, and not the individual rates and indeed the 'mass balance' equation still holds ($
|
132 |
]
|
133 |
},
|
134 |
{
|
135 |
"cell_type": "markdown",
|
136 |
"metadata": {},
|
137 |
"source": [
|
138 |
-
"Next, lets use [solara](https://solara.dev/) to quickly make an interactive component so that we can easily calculate the monomer and dimer concentrations, given a
|
139 |
"\n",
|
140 |
"First, we take the symbolic solutions from `sympy` and lambdify them so that we can input numbers and calculate the output:"
|
141 |
]
|
142 |
},
|
143 |
{
|
144 |
"cell_type": "code",
|
145 |
-
"execution_count":
|
146 |
"metadata": {},
|
147 |
"outputs": [],
|
148 |
"source": [
|
149 |
-
"solve_for = [
|
150 |
-
"inputs = [
|
151 |
"\n",
|
152 |
"lambdas = {s: sp.lambdify(inputs, sol[0][s]) for s in solve_for}"
|
153 |
]
|
@@ -156,25 +183,43 @@
|
|
156 |
"cell_type": "markdown",
|
157 |
"metadata": {},
|
158 |
"source": [
|
159 |
-
"Next, we make a `solara` component, where a user can input the values for $
|
160 |
]
|
161 |
},
|
162 |
{
|
163 |
"cell_type": "code",
|
164 |
-
"execution_count":
|
165 |
"metadata": {},
|
166 |
-
"outputs": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
"source": [
|
168 |
"import solara\n",
|
169 |
"\n",
|
170 |
"@solara.component\n",
|
171 |
"def Page():\n",
|
172 |
-
"
|
173 |
" kD = solara.use_reactive(1.)\n",
|
174 |
"\n",
|
175 |
-
" ans = {k: ld(
|
176 |
"\n",
|
177 |
-
" solara.InputFloat('
|
178 |
" solara.InputFloat('kD', value=kD)\n",
|
179 |
"\n",
|
180 |
" for k, v in ans.items():\n",
|
@@ -187,7 +232,7 @@
|
|
187 |
"cell_type": "markdown",
|
188 |
"metadata": {},
|
189 |
"source": [
|
190 |
-
"Note that the values are all unitless, so if we enter a dissociation constant of 1 $\\mu
|
191 |
"\n",
|
192 |
"This little widget now tells us that if the monomer concentration if 10 times over the value of $k_D$, in the steady-state equillibrium one out of three species is still a monomer!"
|
193 |
]
|
@@ -201,23 +246,98 @@
|
|
201 |
},
|
202 |
{
|
203 |
"cell_type": "code",
|
204 |
-
"execution_count":
|
205 |
"metadata": {},
|
206 |
-
"outputs": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
"source": [
|
208 |
"import numpy as np\n",
|
209 |
"import pandas as pd\n",
|
210 |
"\n",
|
211 |
"\n",
|
212 |
"# create a new function which calculates total molarity (monomer + dimer)\n",
|
213 |
-
"ld_total = sp.lambdify(inputs, sol[0][
|
214 |
"\n",
|
215 |
-
"# create a vector of
|
216 |
-
"
|
217 |
-
"ans = {k: ld(
|
218 |
"\n",
|
219 |
-
"# put the results in a dataframe, together with input
|
220 |
-
"df = pd.DataFrame(dict(
|
221 |
"\n",
|
222 |
"df.head()"
|
223 |
]
|
@@ -231,21 +351,100 @@
|
|
231 |
},
|
232 |
{
|
233 |
"cell_type": "code",
|
234 |
-
"execution_count":
|
235 |
"metadata": {},
|
236 |
-
"outputs": [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
"source": [
|
238 |
"import altair as alt\n",
|
239 |
"\n",
|
240 |
-
"source = df.melt(\"
|
241 |
"\n",
|
242 |
"# Create a selection that chooses the nearest point & selects based on x-value\n",
|
243 |
"nearest = alt.selection_point(nearest=True, on=\"pointerover\",\n",
|
244 |
-
" fields=[\"
|
245 |
"\n",
|
246 |
"# The basic line\n",
|
247 |
"line = alt.Chart(source).mark_line(interpolate=\"basis\").encode(\n",
|
248 |
-
" x=alt.X(\"
|
249 |
" y=alt.Y(\"y:Q\", title='Fraction of total'),\n",
|
250 |
" color=\"species:N\",\n",
|
251 |
")\n",
|
@@ -259,9 +458,9 @@
|
|
259 |
"rules = alt.Chart(source).transform_pivot(\n",
|
260 |
" \"species\",\n",
|
261 |
" value=\"y\",\n",
|
262 |
-
" groupby=[\"
|
263 |
").mark_rule(color=\"black\").encode(\n",
|
264 |
-
" x=\"
|
265 |
" opacity=alt.condition(nearest, alt.value(0.3), alt.value(0)),\n",
|
266 |
" tooltip=[alt.Tooltip(c, type=\"quantitative\", format=\".2f\") for c in df.columns],\n",
|
267 |
").add_params(nearest)\n",
|
@@ -290,8 +489,13 @@
|
|
290 |
"source": [
|
291 |
"Meanwhile, we can think about _why_ its so hard to reach full dimerization even if concentrations used are far higher than the dissociation constant. If we think about the reaction from an maximum entropy point of view, out intuition might tell us that the entropic equivalent of making all promomers into a dimer is the equivalent of putting all 'air molecules' into one corner of the room: it has a vanishingly low probability of happing because its so far away from the maximium entropy state of the system. \n",
|
292 |
"\n",
|
293 |
-
"Second, a closer look at the differential equation describing the change of $[
|
294 |
]
|
|
|
|
|
|
|
|
|
|
|
295 |
}
|
296 |
],
|
297 |
"metadata": {
|
|
|
17 |
"source": [
|
18 |
"## Monomer - Dimer kinetics\n",
|
19 |
"\n",
|
20 |
+
"Lets start with the simple example of dimer formation from two identical protomers:\n",
|
21 |
"(TODO: mhchem package)\n",
|
22 |
"\n",
|
23 |
"$$\n",
|
24 |
+
"P_1 + P_1 <-> P_2\n",
|
25 |
"$$\n",
|
26 |
"\n",
|
27 |
"From the kinetic scheme above, we can write down the differential equations describing this system. These differential equations tell us how the concentrations of the reaction (in this case dimerization) change in time. \n",
|
28 |
"\n",
|
29 |
"$$\n",
|
30 |
+
"\\frac{\\partial [P_1]}{\\partial t} = - 2 k_{on} [P_1][P_1] + 2 k_{off} [P_2]\n",
|
31 |
"$$\n",
|
32 |
"\n",
|
33 |
"$$\n",
|
34 |
+
"\\frac{\\partial [P_2]}{\\partial t} = k_{on} [P_1][P_1] - k_{off} [P_2]\n",
|
35 |
"$$\n",
|
36 |
"\n",
|
37 |
+
"Where square brackets are used to indicate the concentration of the species, ie $[P_1]$ is the concentration of the monomer at a given time point $t$.\n",
|
38 |
"\n",
|
39 |
"To sanity check our results, we can multiply the second equation with -2, such that both right-hand sides become equal. We then find that:\n",
|
40 |
+
"\n",
|
41 |
"$$\n",
|
42 |
+
"\\frac{\\partial [P_1]}{\\partial t} = - 2 \\frac{\\partial [P_2]}{\\partial t}\n",
|
43 |
"$$\n",
|
44 |
"\n",
|
45 |
+
"When reading the equation above, for the equality to hold true, we find that the dimer $P_2$ must appear at _half_ the rate at which the monomer $P_1$ disappears. Cross-checking this with our chemical intuition this makes sense, since two monomers are required to make one dimer. \n",
|
46 |
"\n",
|
47 |
+
"In order to now find which concentrations of monomer and dimer are formed given how much protomer is in the tube, we need three more pieces of information. \n",
|
48 |
"\n",
|
49 |
"First, we are looking for the concentration of the monomer and dimer at _steady-state_: the system has reached equillibrium and no more changes in the concentration of either the monomer or the dimer occur. This means we can set both differential equations to zero. \n",
|
50 |
"\n",
|
51 |
+
"Second, we realize that the total amount of protomer in the tube never goes up or down; its either monomer or as one of the protomers in a dimer. The total amount of protomer is thus:\n",
|
52 |
"\n",
|
53 |
"$$\n",
|
54 |
+
"[P_T] = [P_1] + 2[P_2]\n",
|
55 |
"$$\n",
|
56 |
"\n",
|
57 |
+
"Since extinction coefficients are additive ($\\epsilon_{P_2} = 2\\epsilon_{P_1}$) the total protomer concentration can be measured directly by UV-VIS spectroscopy. \n",
|
58 |
"\n",
|
59 |
+
"Third, we need to have some value for the forward $k_{on}$ and backward rates $k_{off}$. These rates describe how fast the reaction takes place, but at the moment we are only interested in the steady-state concentrations. We can define a single new quantity which depends on the ratio of the forward and backward rates:\n",
|
60 |
"\n",
|
61 |
"$$\n",
|
62 |
"K_d = \\frac{k_{off}}{k_{on}}\n",
|
63 |
"$$\n",
|
64 |
"\n",
|
65 |
+
"If we look at our differential equations, the left-hand side describes the change of concentration of the monomer over time. The units are therefore molar per second ($M s^{-1}$). To make the units match on the left and right-hand side, we can deduce that the units of $k_{on}$ must be $M^{-1} s^{-1}$. Similarly, the units of $k_{off}$ are $s^{-1}$. From this unit analysis, we can see that the lifetime or off rate from a complex is independent of concentratation and we can recognize $K_d$ as the dissociation constant with units $M$."
|
66 |
]
|
67 |
},
|
68 |
{
|
|
|
74 |
},
|
75 |
{
|
76 |
"cell_type": "code",
|
77 |
+
"execution_count": 2,
|
78 |
"metadata": {},
|
79 |
"outputs": [],
|
80 |
"source": [
|
81 |
"import sympy as sp\n",
|
82 |
"\n",
|
83 |
+
"P1, P2, PT, k_on, k_off, kD = sp.symbols(\"P_1 P_2 P_T k_on k_off k_D\", positive=True)"
|
84 |
]
|
85 |
},
|
86 |
{
|
|
|
92 |
},
|
93 |
{
|
94 |
"cell_type": "code",
|
95 |
+
"execution_count": 3,
|
96 |
"metadata": {},
|
97 |
+
"outputs": [
|
98 |
+
{
|
99 |
+
"data": {
|
100 |
+
"text/plain": [
|
101 |
+
"[{P_1: sqrt(k_D)*sqrt(8*P_T + k_D)/4 - k_D/4,\n",
|
102 |
+
" P_2: P_T/2 - sqrt(k_D)*sqrt(8*P_T + k_D)/8 + k_D/8,\n",
|
103 |
+
" k_off: k_D*k_on}]"
|
104 |
+
]
|
105 |
+
},
|
106 |
+
"execution_count": 3,
|
107 |
+
"metadata": {},
|
108 |
+
"output_type": "execute_result"
|
109 |
+
}
|
110 |
+
],
|
111 |
"source": [
|
112 |
"sol = sp.solve(\n",
|
113 |
" [\n",
|
114 |
+
" -2 * k_on * P1 * P1 + 2 * k_off * P2,\n",
|
115 |
+
" P1 + 2 * P2 - PT,\n",
|
116 |
" (k_off / k_on) - kD,\n",
|
117 |
" ],\n",
|
118 |
+
" [P1, P2, k_on, k_off],\n",
|
119 |
" dict=True,\n",
|
120 |
")\n",
|
121 |
"sol"
|
|
|
130 |
},
|
131 |
{
|
132 |
"cell_type": "code",
|
133 |
+
"execution_count": 4,
|
134 |
"metadata": {},
|
135 |
+
"outputs": [
|
136 |
+
{
|
137 |
+
"data": {
|
138 |
+
"text/latex": [
|
139 |
+
"$\\displaystyle \\frac{P_{T}}{2} - \\frac{\\sqrt{k_{D}} \\sqrt{8 P_{T} + k_{D}}}{8} + \\frac{k_{D}}{8}$"
|
140 |
+
],
|
141 |
+
"text/plain": [
|
142 |
+
"P_T/2 - sqrt(k_D)*sqrt(8*P_T + k_D)/8 + k_D/8"
|
143 |
+
]
|
144 |
+
},
|
145 |
+
"execution_count": 4,
|
146 |
+
"metadata": {},
|
147 |
+
"output_type": "execute_result"
|
148 |
+
}
|
149 |
+
],
|
150 |
"source": [
|
151 |
+
"sol[0][P2]"
|
152 |
]
|
153 |
},
|
154 |
{
|
155 |
"cell_type": "markdown",
|
156 |
"metadata": {},
|
157 |
"source": [
|
158 |
+
"We can see that indeed the solution only depends on the dissociation constant $K_D$, and not the individual rates and indeed the 'mass balance' equation still holds ($P_1 + 2P_2 = P_T$), excercise for the reader."
|
159 |
]
|
160 |
},
|
161 |
{
|
162 |
"cell_type": "markdown",
|
163 |
"metadata": {},
|
164 |
"source": [
|
165 |
+
"Next, lets use [solara](https://solara.dev/) to quickly make an interactive component so that we can easily calculate the monomer and dimer concentrations, given a total protomer concentration $P_T$ and the dissociation constant. \n",
|
166 |
"\n",
|
167 |
"First, we take the symbolic solutions from `sympy` and lambdify them so that we can input numbers and calculate the output:"
|
168 |
]
|
169 |
},
|
170 |
{
|
171 |
"cell_type": "code",
|
172 |
+
"execution_count": 5,
|
173 |
"metadata": {},
|
174 |
"outputs": [],
|
175 |
"source": [
|
176 |
+
"solve_for = [P1, P2]\n",
|
177 |
+
"inputs = [PT, kD]\n",
|
178 |
"\n",
|
179 |
"lambdas = {s: sp.lambdify(inputs, sol[0][s]) for s in solve_for}"
|
180 |
]
|
|
|
183 |
"cell_type": "markdown",
|
184 |
"metadata": {},
|
185 |
"source": [
|
186 |
+
"Next, we make a `solara` component, where a user can input the values for $P_T$ and $K_{D}$ and directly obtain $P_1$ and $P_2$ at steady-state:"
|
187 |
]
|
188 |
},
|
189 |
{
|
190 |
"cell_type": "code",
|
191 |
+
"execution_count": 6,
|
192 |
"metadata": {},
|
193 |
+
"outputs": [
|
194 |
+
{
|
195 |
+
"data": {
|
196 |
+
"application/vnd.jupyter.widget-view+json": {
|
197 |
+
"model_id": "7b7432b1958f4bdb91256f7c93718220",
|
198 |
+
"version_major": 2,
|
199 |
+
"version_minor": 0
|
200 |
+
},
|
201 |
+
"text/html": [
|
202 |
+
"Cannot show widget. You probably want to rerun the code cell above (<i>Click in the code cell, and press Shift+Enter <kbd>⇧</kbd>+<kbd>↩</kbd></i>)."
|
203 |
+
],
|
204 |
+
"text/plain": [
|
205 |
+
"Cannot show ipywidgets in text"
|
206 |
+
]
|
207 |
+
},
|
208 |
+
"metadata": {},
|
209 |
+
"output_type": "display_data"
|
210 |
+
}
|
211 |
+
],
|
212 |
"source": [
|
213 |
"import solara\n",
|
214 |
"\n",
|
215 |
"@solara.component\n",
|
216 |
"def Page():\n",
|
217 |
+
" PT = solara.use_reactive(10.)\n",
|
218 |
" kD = solara.use_reactive(1.)\n",
|
219 |
"\n",
|
220 |
+
" ans = {k: ld(PT.value, kD.value) for k, ld in lambdas.items()}\n",
|
221 |
"\n",
|
222 |
+
" solara.InputFloat('PT', value=PT)\n",
|
223 |
" solara.InputFloat('kD', value=kD)\n",
|
224 |
"\n",
|
225 |
" for k, v in ans.items():\n",
|
|
|
232 |
"cell_type": "markdown",
|
233 |
"metadata": {},
|
234 |
"source": [
|
235 |
+
"Note that the values are all unitless, so if we enter a dissociation constant of 1 $\\mu M$, the concentration $P_T$ should also be given in $\\mu M$, and the outputs are then $\\mu M$ as well. \n",
|
236 |
"\n",
|
237 |
"This little widget now tells us that if the monomer concentration if 10 times over the value of $k_D$, in the steady-state equillibrium one out of three species is still a monomer!"
|
238 |
]
|
|
|
246 |
},
|
247 |
{
|
248 |
"cell_type": "code",
|
249 |
+
"execution_count": 9,
|
250 |
"metadata": {},
|
251 |
+
"outputs": [
|
252 |
+
{
|
253 |
+
"data": {
|
254 |
+
"text/html": [
|
255 |
+
"<div>\n",
|
256 |
+
"<style scoped>\n",
|
257 |
+
" .dataframe tbody tr th:only-of-type {\n",
|
258 |
+
" vertical-align: middle;\n",
|
259 |
+
" }\n",
|
260 |
+
"\n",
|
261 |
+
" .dataframe tbody tr th {\n",
|
262 |
+
" vertical-align: top;\n",
|
263 |
+
" }\n",
|
264 |
+
"\n",
|
265 |
+
" .dataframe thead th {\n",
|
266 |
+
" text-align: right;\n",
|
267 |
+
" }\n",
|
268 |
+
"</style>\n",
|
269 |
+
"<table border=\"1\" class=\"dataframe\">\n",
|
270 |
+
" <thead>\n",
|
271 |
+
" <tr style=\"text-align: right;\">\n",
|
272 |
+
" <th></th>\n",
|
273 |
+
" <th>PT</th>\n",
|
274 |
+
" <th>P_1</th>\n",
|
275 |
+
" <th>P_2</th>\n",
|
276 |
+
" </tr>\n",
|
277 |
+
" </thead>\n",
|
278 |
+
" <tbody>\n",
|
279 |
+
" <tr>\n",
|
280 |
+
" <th>0</th>\n",
|
281 |
+
" <td>0.100000</td>\n",
|
282 |
+
" <td>0.921311</td>\n",
|
283 |
+
" <td>0.078689</td>\n",
|
284 |
+
" </tr>\n",
|
285 |
+
" <tr>\n",
|
286 |
+
" <th>1</th>\n",
|
287 |
+
" <td>0.109750</td>\n",
|
288 |
+
" <td>0.915248</td>\n",
|
289 |
+
" <td>0.084752</td>\n",
|
290 |
+
" </tr>\n",
|
291 |
+
" <tr>\n",
|
292 |
+
" <th>2</th>\n",
|
293 |
+
" <td>0.120450</td>\n",
|
294 |
+
" <td>0.908825</td>\n",
|
295 |
+
" <td>0.091175</td>\n",
|
296 |
+
" </tr>\n",
|
297 |
+
" <tr>\n",
|
298 |
+
" <th>3</th>\n",
|
299 |
+
" <td>0.132194</td>\n",
|
300 |
+
" <td>0.902035</td>\n",
|
301 |
+
" <td>0.097965</td>\n",
|
302 |
+
" </tr>\n",
|
303 |
+
" <tr>\n",
|
304 |
+
" <th>4</th>\n",
|
305 |
+
" <td>0.145083</td>\n",
|
306 |
+
" <td>0.894871</td>\n",
|
307 |
+
" <td>0.105129</td>\n",
|
308 |
+
" </tr>\n",
|
309 |
+
" </tbody>\n",
|
310 |
+
"</table>\n",
|
311 |
+
"</div>"
|
312 |
+
],
|
313 |
+
"text/plain": [
|
314 |
+
" PT P_1 P_2\n",
|
315 |
+
"0 0.100000 0.921311 0.078689\n",
|
316 |
+
"1 0.109750 0.915248 0.084752\n",
|
317 |
+
"2 0.120450 0.908825 0.091175\n",
|
318 |
+
"3 0.132194 0.902035 0.097965\n",
|
319 |
+
"4 0.145083 0.894871 0.105129"
|
320 |
+
]
|
321 |
+
},
|
322 |
+
"execution_count": 9,
|
323 |
+
"metadata": {},
|
324 |
+
"output_type": "execute_result"
|
325 |
+
}
|
326 |
+
],
|
327 |
"source": [
|
328 |
"import numpy as np\n",
|
329 |
"import pandas as pd\n",
|
330 |
"\n",
|
331 |
"\n",
|
332 |
"# create a new function which calculates total molarity (monomer + dimer)\n",
|
333 |
+
"ld_total = sp.lambdify(inputs, sol[0][P1] + sol[0][P2])\n",
|
334 |
"\n",
|
335 |
+
"# create a vector of PT values ranging from 0.1 times kD to 1000 times kD\n",
|
336 |
+
"PT_values = np.logspace(-1, 3, endpoint=True, num=100)\n",
|
337 |
+
"ans = {k: ld(PT_values, 1) / ld_total(PT_values, 1) for k, ld in lambdas.items()}\n",
|
338 |
"\n",
|
339 |
+
"# put the results in a dataframe, together with input PT values\n",
|
340 |
+
"df = pd.DataFrame(dict(PT=PT_values) | {k.name: v for k, v in ans.items()})\n",
|
341 |
"\n",
|
342 |
"df.head()"
|
343 |
]
|
|
|
351 |
},
|
352 |
{
|
353 |
"cell_type": "code",
|
354 |
+
"execution_count": 11,
|
355 |
"metadata": {},
|
356 |
+
"outputs": [
|
357 |
+
{
|
358 |
+
"data": {
|
359 |
+
"text/html": [
|
360 |
+
"\n",
|
361 |
+
"<style>\n",
|
362 |
+
" #altair-viz-3a30d2050bb04b3bbbb1e571718d97a1.vega-embed {\n",
|
363 |
+
" width: 100%;\n",
|
364 |
+
" display: flex;\n",
|
365 |
+
" }\n",
|
366 |
+
"\n",
|
367 |
+
" #altair-viz-3a30d2050bb04b3bbbb1e571718d97a1.vega-embed details,\n",
|
368 |
+
" #altair-viz-3a30d2050bb04b3bbbb1e571718d97a1.vega-embed details summary {\n",
|
369 |
+
" position: relative;\n",
|
370 |
+
" }\n",
|
371 |
+
"</style>\n",
|
372 |
+
"<div id=\"altair-viz-3a30d2050bb04b3bbbb1e571718d97a1\"></div>\n",
|
373 |
+
"<script type=\"text/javascript\">\n",
|
374 |
+
" var VEGA_DEBUG = (typeof VEGA_DEBUG == \"undefined\") ? {} : VEGA_DEBUG;\n",
|
375 |
+
" (function(spec, embedOpt){\n",
|
376 |
+
" let outputDiv = document.currentScript.previousElementSibling;\n",
|
377 |
+
" if (outputDiv.id !== \"altair-viz-3a30d2050bb04b3bbbb1e571718d97a1\") {\n",
|
378 |
+
" outputDiv = document.getElementById(\"altair-viz-3a30d2050bb04b3bbbb1e571718d97a1\");\n",
|
379 |
+
" }\n",
|
380 |
+
" const paths = {\n",
|
381 |
+
" \"vega\": \"https://cdn.jsdelivr.net/npm/vega@5?noext\",\n",
|
382 |
+
" \"vega-lib\": \"https://cdn.jsdelivr.net/npm/vega-lib?noext\",\n",
|
383 |
+
" \"vega-lite\": \"https://cdn.jsdelivr.net/npm/[email protected]?noext\",\n",
|
384 |
+
" \"vega-embed\": \"https://cdn.jsdelivr.net/npm/vega-embed@6?noext\",\n",
|
385 |
+
" };\n",
|
386 |
+
"\n",
|
387 |
+
" function maybeLoadScript(lib, version) {\n",
|
388 |
+
" var key = `${lib.replace(\"-\", \"\")}_version`;\n",
|
389 |
+
" return (VEGA_DEBUG[key] == version) ?\n",
|
390 |
+
" Promise.resolve(paths[lib]) :\n",
|
391 |
+
" new Promise(function(resolve, reject) {\n",
|
392 |
+
" var s = document.createElement('script');\n",
|
393 |
+
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n",
|
394 |
+
" s.async = true;\n",
|
395 |
+
" s.onload = () => {\n",
|
396 |
+
" VEGA_DEBUG[key] = version;\n",
|
397 |
+
" return resolve(paths[lib]);\n",
|
398 |
+
" };\n",
|
399 |
+
" s.onerror = () => reject(`Error loading script: ${paths[lib]}`);\n",
|
400 |
+
" s.src = paths[lib];\n",
|
401 |
+
" });\n",
|
402 |
+
" }\n",
|
403 |
+
"\n",
|
404 |
+
" function showError(err) {\n",
|
405 |
+
" outputDiv.innerHTML = `<div class=\"error\" style=\"color:red;\">${err}</div>`;\n",
|
406 |
+
" throw err;\n",
|
407 |
+
" }\n",
|
408 |
+
"\n",
|
409 |
+
" function displayChart(vegaEmbed) {\n",
|
410 |
+
" vegaEmbed(outputDiv, spec, embedOpt)\n",
|
411 |
+
" .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));\n",
|
412 |
+
" }\n",
|
413 |
+
"\n",
|
414 |
+
" if(typeof define === \"function\" && define.amd) {\n",
|
415 |
+
" requirejs.config({paths});\n",
|
416 |
+
" require([\"vega-embed\"], displayChart, err => showError(`Error loading script: ${err.message}`));\n",
|
417 |
+
" } else {\n",
|
418 |
+
" maybeLoadScript(\"vega\", \"5\")\n",
|
419 |
+
" .then(() => maybeLoadScript(\"vega-lite\", \"5.17.0\"))\n",
|
420 |
+
" .then(() => maybeLoadScript(\"vega-embed\", \"6\"))\n",
|
421 |
+
" .catch(showError)\n",
|
422 |
+
" .then(() => displayChart(vegaEmbed));\n",
|
423 |
+
" }\n",
|
424 |
+
" })({\"config\": {\"view\": {\"continuousWidth\": 300, \"continuousHeight\": 300}}, \"layer\": [{\"mark\": {\"type\": \"line\", \"interpolate\": \"basis\"}, \"encoding\": {\"color\": {\"field\": \"species\", \"type\": \"nominal\"}, \"x\": {\"field\": \"PT\", \"scale\": {\"type\": \"log\"}, \"title\": \"Ratio PT/kD\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"y\", \"title\": \"Fraction of total\", \"type\": \"quantitative\"}}}, {\"mark\": {\"type\": \"point\"}, \"encoding\": {\"color\": {\"field\": \"species\", \"type\": \"nominal\"}, \"opacity\": {\"condition\": {\"param\": \"param_2\", \"value\": 1, \"empty\": false}, \"value\": 0}, \"x\": {\"field\": \"PT\", \"scale\": {\"type\": \"log\"}, \"title\": \"Ratio PT/kD\", \"type\": \"quantitative\"}, \"y\": {\"field\": \"y\", \"title\": \"Fraction of total\", \"type\": \"quantitative\"}}}, {\"mark\": {\"type\": \"rule\", \"color\": \"black\"}, \"encoding\": {\"opacity\": {\"condition\": {\"param\": \"param_2\", \"value\": 0.3, \"empty\": false}, \"value\": 0}, \"tooltip\": [{\"field\": \"PT\", \"format\": \".2f\", \"type\": \"quantitative\"}, {\"field\": \"P_1\", \"format\": \".2f\", \"type\": \"quantitative\"}, {\"field\": \"P_2\", \"format\": \".2f\", \"type\": \"quantitative\"}], \"x\": {\"field\": \"PT\", \"type\": \"quantitative\"}}, \"name\": \"view_2\", \"transform\": [{\"pivot\": \"species\", \"value\": \"y\", \"groupby\": [\"PT\"]}]}], \"data\": {\"name\": \"data-446f9e2ed8437d0111f079d2121109d1\"}, \"height\": 300, \"params\": [{\"name\": \"param_2\", \"select\": {\"type\": \"point\", \"fields\": [\"PT\"], \"nearest\": true, \"on\": \"pointerover\"}, \"views\": [\"view_2\"]}], \"width\": 600, \"$schema\": \"https://vega.github.io/schema/vega-lite/v5.17.0.json\", \"datasets\": {\"data-446f9e2ed8437d0111f079d2121109d1\": [{\"PT\": 0.1, \"species\": \"P_1\", \"y\": 0.9213106741667366}, {\"PT\": 0.10974987654930562, \"species\": \"P_1\", \"y\": 0.9152478142703887}, {\"PT\": 0.12045035402587821, \"species\": \"P_1\", \"y\": 0.9088252563655043}, {\"PT\": 0.1321941148466029, \"species\": \"P_1\", \"y\": 0.9020350932162419}, {\"PT\": 0.14508287784959398, \"species\": \"P_1\", \"y\": 0.8948707231715299}, {\"PT\": 0.1592282793341092, \"species\": \"P_1\", \"y\": 0.887326964051884}, {\"PT\": 0.17475284000076838, \"species\": \"P_1\", \"y\": 0.8794001529111963}, {\"PT\": 0.19179102616724888, \"species\": \"P_1\", \"y\": 0.8710882296412226}, {\"PT\": 0.2104904144512021, \"species\": \"P_1\", \"y\": 0.8623908028192255}, {\"PT\": 0.23101297000831597, \"species\": \"P_1\", \"y\": 0.8533091966764864}, {\"PT\": 0.2535364493970112, \"species\": \"P_1\", \"y\": 0.8438464785616561}, {\"PT\": 0.2782559402207124, \"species\": \"P_1\", \"y\": 0.8340074667631514}, {\"PT\": 0.30538555088334157, \"species\": \"P_1\", \"y\": 0.8237987190163906}, {\"PT\": 0.33516026509388425, \"species\": \"P_1\", \"y\": 0.813228502436007}, {\"PT\": 0.36783797718286343, \"species\": \"P_1\", \"y\": 0.8023067459666666}, {\"PT\": 0.40370172585965547, \"species\": \"P_1\", \"y\": 0.791044976730576}, {\"PT\": 0.4430621457583881, \"species\": \"P_1\", \"y\": 0.7794562418623244}, {\"PT\": 0.4862601580065355, \"species\": \"P_1\", \"y\": 0.7675550175641289}, {\"PT\": 0.533669923120631, \"species\": \"P_1\", \"y\": 0.7553571071923714}, {\"PT\": 0.5857020818056667, \"species\": \"P_1\", \"y\": 0.742879530207701}, {\"PT\": 0.6428073117284322, \"species\": \"P_1\", \"y\": 0.7301404037955845}, {\"PT\": 0.7054802310718644, \"species\": \"P_1\", \"y\": 0.7171588189022171}, {\"PT\": 0.7742636826811272, \"species\": \"P_1\", \"y\": 0.7039547123419793}, {\"PT\": 0.8497534359086445, \"species\": \"P_1\", \"y\": 0.6905487365260083}, {\"PT\": 0.9326033468832199, \"species\": \"P_1\", \"y\": 0.6769621282444622}, {\"PT\": 1.0235310218990263, \"species\": \"P_1\", \"y\": 0.6632165778136448}, {\"PT\": 1.1233240329780276, \"species\": \"P_1\", \"y\": 0.6493340997777712}, {\"PT\": 1.2328467394420666, \"species\": \"P_1\", \"y\": 0.6353369062367451}, {\"PT\": 1.3530477745798075, \"species\": \"P_1\", \"y\": 0.6212472837576913}, {\"PT\": 1.484968262254465, \"species\": \"P_1\", \"y\": 0.6070874747199139}, {\"PT\": 1.6297508346206444, \"species\": \"P_1\", \"y\": 0.5928795638405217}, {\"PT\": 1.7886495290574351, \"species\": \"P_1\", \"y\": 0.5786453705308084}, {\"PT\": 1.9630406500402715, \"species\": \"P_1\", \"y\": 0.5644063476409491}, {\"PT\": 2.1544346900318843, \"species\": \"P_1\", \"y\": 0.5501834870619822}, {\"PT\": 2.3644894126454084, \"species\": \"P_1\", \"y\": 0.5359972325687437}, {\"PT\": 2.5950242113997373, \"species\": \"P_1\", \"y\": 0.5218674002048792}, {\"PT\": 2.848035868435802, \"species\": \"P_1\", \"y\": 0.5078131064309908}, {\"PT\": 3.1257158496882367, \"species\": \"P_1\", \"y\": 0.493852704179271}, {\"PT\": 3.4304692863149193, \"species\": \"P_1\", \"y\": 0.48000372688273857}, {\"PT\": 3.764935806792469, \"species\": \"P_1\", \"y\": 0.4662828404747031}, {\"PT\": 4.132012400115339, \"species\": \"P_1\", \"y\": 0.45270580328479026}, {\"PT\": 4.5348785081285845, \"species\": \"P_1\", \"y\": 0.43928743369225387}, {\"PT\": 4.977023564332112, \"species\": \"P_1\", \"y\": 0.42604158533598346}, {\"PT\": 5.462277217684343, \"species\": \"P_1\", \"y\": 0.41298112962415334}, {\"PT\": 5.994842503189412, \"species\": \"P_1\", \"y\": 0.4001179452353983}, {\"PT\": 6.5793322465756825, \"species\": \"P_1\", \"y\": 0.3874629142582253}, {\"PT\": 7.220809018385467, \"species\": \"P_1\", \"y\": 0.3750259245764573}, {\"PT\": 7.924828983539178, \"species\": \"P_1\", \"y\": 0.3628158780761266}, {\"PT\": 8.697490026177835, \"species\": \"P_1\", \"y\": 0.3508407042235381}, {\"PT\": 9.545484566618342, \"species\": \"P_1\", \"y\": 0.33910737854522055}, {\"PT\": 10.476157527896651, \"species\": \"P_1\", \"y\": 0.32762194552806667}, {\"PT\": 11.497569953977369, \"species\": \"P_1\", \"y\": 0.3163895454519114}, {\"PT\": 12.61856883066021, \"species\": \"P_1\", \"y\": 0.30541444466676376}, {\"PT\": 13.848863713938732, \"species\": \"P_1\", \"y\": 0.2947000688324766}, {\"PT\": 15.199110829529348, \"species\": \"P_1\", \"y\": 0.28424903864930695}, {\"PT\": 16.68100537200059, \"species\": \"P_1\", \"y\": 0.27406320762302827}, {\"PT\": 18.307382802953697, \"species\": \"P_1\", \"y\": 0.2641437014274086}, {\"PT\": 20.09233002565048, \"species\": \"P_1\", \"y\": 0.2544909584493632}, {\"PT\": 22.051307399030456, \"species\": \"P_1\", \"y\": 0.24510477112727974}, {\"PT\": 24.201282647943835, \"species\": \"P_1\", \"y\": 0.2359843277203209}, {\"PT\": 26.560877829466868, \"species\": \"P_1\", \"y\": 0.2271282541753208}, {\"PT\": 29.150530628251786, \"species\": \"P_1\", \"y\": 0.21853465578766545}, {\"PT\": 31.992671377973846, \"species\": \"P_1\", \"y\": 0.2102011583827801}, {\"PT\": 35.111917342151344, \"species\": \"P_1\", \"y\": 0.20212494877505027}, {\"PT\": 38.535285937105314, \"species\": \"P_1\", \"y\": 0.1943028142908023}, {\"PT\": 42.29242874389499, \"species\": \"P_1\", \"y\": 0.1867311811709695}, {\"PT\": 46.41588833612782, \"species\": \"P_1\", \"y\": 0.17940615169700316}, {\"PT\": 50.9413801481638, \"species\": \"P_1\", \"y\": 0.17232353991018073}, {\"PT\": 55.90810182512229, \"species\": \"P_1\", \"y\": 0.16547890581953636}, {\"PT\": 61.35907273413176, \"species\": \"P_1\", \"y\": 0.15886758801703976}, {\"PT\": 67.34150657750828, \"species\": \"P_1\", \"y\": 0.1524847346402729}, {\"PT\": 73.90722033525783, \"species\": \"P_1\", \"y\": 0.14632533264264772}, {\"PT\": 81.11308307896873, \"species\": \"P_1\", \"y\": 0.14038423534913913}, {\"PT\": 89.02150854450393, \"species\": \"P_1\", \"y\": 0.1346561882915889}, {\"PT\": 97.70099572992257, \"species\": \"P_1\", \"y\": 0.12913585333189967}, {\"PT\": 107.22672220103243, \"species\": \"P_1\", \"y\": 0.12381783109393958}, {\"PT\": 117.68119524349991, \"species\": \"P_1\", \"y\": 0.11869668173579613}, {\"PT\": 129.1549665014884, \"species\": \"P_1\", \"y\": 0.11376694410323461}, {\"PT\": 141.7474162926806, \"species\": \"P_1\", \"y\": 0.10902315331294034}, {\"PT\": 155.56761439304722, \"species\": \"P_1\", \"y\": 0.10445985682045184}, {\"PT\": 170.7352647470692, \"species\": \"P_1\", \"y\": 0.10007162903274308}, {\"PT\": 187.3817422860385, \"species\": \"P_1\", \"y\": 0.09585308452929588}, {\"PT\": 205.65123083486534, \"species\": \"P_1\", \"y\": 0.0917988899583294}, {\"PT\": 225.70197196339214, \"species\": \"P_1\", \"y\": 0.08790377467673861}, {\"PT\": 247.70763559917114, \"species\": \"P_1\", \"y\": 0.08416254020333655}, {\"PT\": 271.85882427329426, \"species\": \"P_1\", \"y\": 0.0805700685553064}, {\"PT\": 298.364724028334, \"species\": \"P_1\", \"y\": 0.07712132953743882}, {\"PT\": 327.4549162877732, \"species\": \"P_1\", \"y\": 0.07381138705285176}, {\"PT\": 359.3813663804629, \"species\": \"P_1\", \"y\": 0.07063540450254992}, {\"PT\": 394.420605943766, \"species\": \"P_1\", \"y\": 0.06758864933944884}, {\"PT\": 432.87612810830615, \"species\": \"P_1\", \"y\": 0.06466649684044665}, {\"PT\": 475.0810162102798, \"species\": \"P_1\", \"y\": 0.061864433157825666}, {\"PT\": 521.400828799969, \"species\": \"P_1\", \"y\": 0.05917805770877593}, {\"PT\": 572.236765935022, \"species\": \"P_1\", \"y\": 0.0566030849591937}, {\"PT\": 628.029144183426, \"species\": \"P_1\", \"y\": 0.05413534565517292}, {\"PT\": 689.2612104349702, \"species\": \"P_1\", \"y\": 0.05177078755281282}, {\"PT\": 756.463327554629, \"species\": \"P_1\", \"y\": 0.04950547569414219}, {\"PT\": 830.2175681319752, \"species\": \"P_1\", \"y\": 0.04733559227414581}, {\"PT\": 911.1627561154896, \"species\": \"P_1\", \"y\": 0.045257436141088785}, {\"PT\": 1000.0, \"species\": \"P_1\", \"y\": 0.04326742196959632}, {\"PT\": 0.1, \"species\": \"P_2\", \"y\": 0.07868932583326321}, {\"PT\": 0.10974987654930562, \"species\": \"P_2\", \"y\": 0.08475218572961124}, {\"PT\": 0.12045035402587821, \"species\": \"P_2\", \"y\": 0.09117474363449568}, {\"PT\": 0.1321941148466029, \"species\": \"P_2\", \"y\": 0.09796490678375804}, {\"PT\": 0.14508287784959398, \"species\": \"P_2\", \"y\": 0.10512927682846993}, {\"PT\": 0.1592282793341092, \"species\": \"P_2\", \"y\": 0.11267303594811592}, {\"PT\": 0.17475284000076838, \"species\": \"P_2\", \"y\": 0.12059984708880354}, {\"PT\": 0.19179102616724888, \"species\": \"P_2\", \"y\": 0.12891177035877757}, {\"PT\": 0.2104904144512021, \"species\": \"P_2\", \"y\": 0.1376091971807744}, {\"PT\": 0.23101297000831597, \"species\": \"P_2\", \"y\": 0.14669080332351347}, {\"PT\": 0.2535364493970112, \"species\": \"P_2\", \"y\": 0.1561535214383439}, {\"PT\": 0.2782559402207124, \"species\": \"P_2\", \"y\": 0.1659925332368486}, {\"PT\": 0.30538555088334157, \"species\": \"P_2\", \"y\": 0.17620128098360954}, {\"PT\": 0.33516026509388425, \"species\": \"P_2\", \"y\": 0.18677149756399297}, {\"PT\": 0.36783797718286343, \"species\": \"P_2\", \"y\": 0.19769325403333335}, {\"PT\": 0.40370172585965547, \"species\": \"P_2\", \"y\": 0.20895502326942395}, {\"PT\": 0.4430621457583881, \"species\": \"P_2\", \"y\": 0.22054375813767554}, {\"PT\": 0.4862601580065355, \"species\": \"P_2\", \"y\": 0.2324449824358711}, {\"PT\": 0.533669923120631, \"species\": \"P_2\", \"y\": 0.24464289280762855}, {\"PT\": 0.5857020818056667, \"species\": \"P_2\", \"y\": 0.257120469792299}, {\"PT\": 0.6428073117284322, \"species\": \"P_2\", \"y\": 0.26985959620441546}, {\"PT\": 0.7054802310718644, \"species\": \"P_2\", \"y\": 0.2828411810977828}, {\"PT\": 0.7742636826811272, \"species\": \"P_2\", \"y\": 0.2960452876580207}, {\"PT\": 0.8497534359086445, \"species\": \"P_2\", \"y\": 0.3094512634739916}, {\"PT\": 0.9326033468832199, \"species\": \"P_2\", \"y\": 0.3230378717555378}, {\"PT\": 1.0235310218990263, \"species\": \"P_2\", \"y\": 0.33678342218635515}, {\"PT\": 1.1233240329780276, \"species\": \"P_2\", \"y\": 0.3506659002222288}, {\"PT\": 1.2328467394420666, \"species\": \"P_2\", \"y\": 0.36466309376325495}, {\"PT\": 1.3530477745798075, \"species\": \"P_2\", \"y\": 0.37875271624230866}, {\"PT\": 1.484968262254465, \"species\": \"P_2\", \"y\": 0.39291252528008624}, {\"PT\": 1.6297508346206444, \"species\": \"P_2\", \"y\": 0.40712043615947846}, {\"PT\": 1.7886495290574351, \"species\": \"P_2\", \"y\": 0.42135462946919144}, {\"PT\": 1.9630406500402715, \"species\": \"P_2\", \"y\": 0.4355936523590508}, {\"PT\": 2.1544346900318843, \"species\": \"P_2\", \"y\": 0.4498165129380179}, {\"PT\": 2.3644894126454084, \"species\": \"P_2\", \"y\": 0.4640027674312564}, {\"PT\": 2.5950242113997373, \"species\": \"P_2\", \"y\": 0.4781325997951208}, {\"PT\": 2.848035868435802, \"species\": \"P_2\", \"y\": 0.49218689356900924}, {\"PT\": 3.1257158496882367, \"species\": \"P_2\", \"y\": 0.5061472958207289}, {\"PT\": 3.4304692863149193, \"species\": \"P_2\", \"y\": 0.5199962731172615}, {\"PT\": 3.764935806792469, \"species\": \"P_2\", \"y\": 0.533717159525297}, {\"PT\": 4.132012400115339, \"species\": \"P_2\", \"y\": 0.5472941967152098}, {\"PT\": 4.5348785081285845, \"species\": \"P_2\", \"y\": 0.5607125663077462}, {\"PT\": 4.977023564332112, \"species\": \"P_2\", \"y\": 0.5739584146640166}, {\"PT\": 5.462277217684343, \"species\": \"P_2\", \"y\": 0.5870188703758467}, {\"PT\": 5.994842503189412, \"species\": \"P_2\", \"y\": 0.5998820547646017}, {\"PT\": 6.5793322465756825, \"species\": \"P_2\", \"y\": 0.6125370857417747}, {\"PT\": 7.220809018385467, \"species\": \"P_2\", \"y\": 0.6249740754235427}, {\"PT\": 7.924828983539178, \"species\": \"P_2\", \"y\": 0.6371841219238735}, {\"PT\": 8.697490026177835, \"species\": \"P_2\", \"y\": 0.6491592957764619}, {\"PT\": 9.545484566618342, \"species\": \"P_2\", \"y\": 0.6608926214547796}, {\"PT\": 10.476157527896651, \"species\": \"P_2\", \"y\": 0.6723780544719333}, {\"PT\": 11.497569953977369, \"species\": \"P_2\", \"y\": 0.6836104545480887}, {\"PT\": 12.61856883066021, \"species\": \"P_2\", \"y\": 0.6945855553332363}, {\"PT\": 13.848863713938732, \"species\": \"P_2\", \"y\": 0.7052999311675234}, {\"PT\": 15.199110829529348, \"species\": \"P_2\", \"y\": 0.7157509613506929}, {\"PT\": 16.68100537200059, \"species\": \"P_2\", \"y\": 0.7259367923769716}, {\"PT\": 18.307382802953697, \"species\": \"P_2\", \"y\": 0.7358562985725914}, {\"PT\": 20.09233002565048, \"species\": \"P_2\", \"y\": 0.7455090415506367}, {\"PT\": 22.051307399030456, \"species\": \"P_2\", \"y\": 0.7548952288727201}, {\"PT\": 24.201282647943835, \"species\": \"P_2\", \"y\": 0.7640156722796789}, {\"PT\": 26.560877829466868, \"species\": \"P_2\", \"y\": 0.7728717458246792}, {\"PT\": 29.150530628251786, \"species\": \"P_2\", \"y\": 0.7814653442123345}, {\"PT\": 31.992671377973846, \"species\": \"P_2\", \"y\": 0.7897988416172199}, {\"PT\": 35.111917342151344, \"species\": \"P_2\", \"y\": 0.7978750512249496}, {\"PT\": 38.535285937105314, \"species\": \"P_2\", \"y\": 0.8056971857091976}, {\"PT\": 42.29242874389499, \"species\": \"P_2\", \"y\": 0.8132688188290305}, {\"PT\": 46.41588833612782, \"species\": \"P_2\", \"y\": 0.8205938483029968}, {\"PT\": 50.9413801481638, \"species\": \"P_2\", \"y\": 0.8276764600898192}, {\"PT\": 55.90810182512229, \"species\": \"P_2\", \"y\": 0.8345210941804637}, {\"PT\": 61.35907273413176, \"species\": \"P_2\", \"y\": 0.8411324119829602}, {\"PT\": 67.34150657750828, \"species\": \"P_2\", \"y\": 0.8475152653597271}, {\"PT\": 73.90722033525783, \"species\": \"P_2\", \"y\": 0.8536746673573522}, {\"PT\": 81.11308307896873, \"species\": \"P_2\", \"y\": 0.8596157646508609}, {\"PT\": 89.02150854450393, \"species\": \"P_2\", \"y\": 0.8653438117084111}, {\"PT\": 97.70099572992257, \"species\": \"P_2\", \"y\": 0.8708641466681002}, {\"PT\": 107.22672220103243, \"species\": \"P_2\", \"y\": 0.8761821689060604}, {\"PT\": 117.68119524349991, \"species\": \"P_2\", \"y\": 0.8813033182642038}, {\"PT\": 129.1549665014884, \"species\": \"P_2\", \"y\": 0.8862330558967654}, {\"PT\": 141.7474162926806, \"species\": \"P_2\", \"y\": 0.8909768466870598}, {\"PT\": 155.56761439304722, \"species\": \"P_2\", \"y\": 0.8955401431795483}, {\"PT\": 170.7352647470692, \"species\": \"P_2\", \"y\": 0.8999283709672571}, {\"PT\": 187.3817422860385, \"species\": \"P_2\", \"y\": 0.9041469154707042}, {\"PT\": 205.65123083486534, \"species\": \"P_2\", \"y\": 0.9082011100416706}, {\"PT\": 225.70197196339214, \"species\": \"P_2\", \"y\": 0.9120962253232613}, {\"PT\": 247.70763559917114, \"species\": \"P_2\", \"y\": 0.9158374597966633}, {\"PT\": 271.85882427329426, \"species\": \"P_2\", \"y\": 0.9194299314446935}, {\"PT\": 298.364724028334, \"species\": \"P_2\", \"y\": 0.9228786704625612}, {\"PT\": 327.4549162877732, \"species\": \"P_2\", \"y\": 0.9261886129471482}, {\"PT\": 359.3813663804629, \"species\": \"P_2\", \"y\": 0.9293645954974501}, {\"PT\": 394.420605943766, \"species\": \"P_2\", \"y\": 0.932411350660551}, {\"PT\": 432.87612810830615, \"species\": \"P_2\", \"y\": 0.9353335031595534}, {\"PT\": 475.0810162102798, \"species\": \"P_2\", \"y\": 0.9381355668421743}, {\"PT\": 521.400828799969, \"species\": \"P_2\", \"y\": 0.9408219422912241}, {\"PT\": 572.236765935022, \"species\": \"P_2\", \"y\": 0.9433969150408062}, {\"PT\": 628.029144183426, \"species\": \"P_2\", \"y\": 0.9458646543448271}, {\"PT\": 689.2612104349702, \"species\": \"P_2\", \"y\": 0.9482292124471873}, {\"PT\": 756.463327554629, \"species\": \"P_2\", \"y\": 0.9504945243058579}, {\"PT\": 830.2175681319752, \"species\": \"P_2\", \"y\": 0.9526644077258541}, {\"PT\": 911.1627561154896, \"species\": \"P_2\", \"y\": 0.9547425638589112}, {\"PT\": 1000.0, \"species\": \"P_2\", \"y\": 0.9567325780304037}]}}, {\"mode\": \"vega-lite\"});\n",
|
425 |
+
"</script>"
|
426 |
+
],
|
427 |
+
"text/plain": [
|
428 |
+
"alt.LayerChart(...)"
|
429 |
+
]
|
430 |
+
},
|
431 |
+
"execution_count": 11,
|
432 |
+
"metadata": {},
|
433 |
+
"output_type": "execute_result"
|
434 |
+
}
|
435 |
+
],
|
436 |
"source": [
|
437 |
"import altair as alt\n",
|
438 |
"\n",
|
439 |
+
"source = df.melt(\"PT\", var_name=\"species\", value_name=\"y\")\n",
|
440 |
"\n",
|
441 |
"# Create a selection that chooses the nearest point & selects based on x-value\n",
|
442 |
"nearest = alt.selection_point(nearest=True, on=\"pointerover\",\n",
|
443 |
+
" fields=[\"PT\"], empty=False)\n",
|
444 |
"\n",
|
445 |
"# The basic line\n",
|
446 |
"line = alt.Chart(source).mark_line(interpolate=\"basis\").encode(\n",
|
447 |
+
" x=alt.X(\"PT:Q\", scale=alt.Scale(type=\"log\"), title='Ratio PT/kD'),\n",
|
448 |
" y=alt.Y(\"y:Q\", title='Fraction of total'),\n",
|
449 |
" color=\"species:N\",\n",
|
450 |
")\n",
|
|
|
458 |
"rules = alt.Chart(source).transform_pivot(\n",
|
459 |
" \"species\",\n",
|
460 |
" value=\"y\",\n",
|
461 |
+
" groupby=[\"PT\"]\n",
|
462 |
").mark_rule(color=\"black\").encode(\n",
|
463 |
+
" x=\"PT:Q\",\n",
|
464 |
" opacity=alt.condition(nearest, alt.value(0.3), alt.value(0)),\n",
|
465 |
" tooltip=[alt.Tooltip(c, type=\"quantitative\", format=\".2f\") for c in df.columns],\n",
|
466 |
").add_params(nearest)\n",
|
|
|
489 |
"source": [
|
490 |
"Meanwhile, we can think about _why_ its so hard to reach full dimerization even if concentrations used are far higher than the dissociation constant. If we think about the reaction from an maximum entropy point of view, out intuition might tell us that the entropic equivalent of making all promomers into a dimer is the equivalent of putting all 'air molecules' into one corner of the room: it has a vanishingly low probability of happing because its so far away from the maximium entropy state of the system. \n",
|
491 |
"\n",
|
492 |
+
"Second, a closer look at the differential equation describing the change of $[P_2]$ also tells us the answer. There are two terms in this equation: one is positive and depends on $[P_1]$, the second is negative and depends on $[P_2]$. Therefore, even when there is a lot of total protomer $[P_T]$ compared to the $k_D$, as more and more dimer is formed $[P_1]$ will go down while $[P_2]$ goes up. Thus the positive term becomes smaller while the negative term becomes bigger, slowing down the formation of dimer, and equillibrium is reached at a point with still a large fraction of $P_1$ in solution. "
|
493 |
]
|
494 |
+
},
|
495 |
+
{
|
496 |
+
"cell_type": "markdown",
|
497 |
+
"metadata": {},
|
498 |
+
"source": []
|
499 |
}
|
500 |
],
|
501 |
"metadata": {
|