Summary: This report summarizes work done as part of the Hippocampus Neuroscience PFUG under Rice University's VIGRE program. VIGRE is a program of Vertically Integrated Grants for Research and Education in the Mathematical Sciences under the direction of the National Science Foundation. A PFUG is a group of Postdocs, Faculty, Undergraduates and Graduate students formed round the study of a common problem. This module verifies the existence of a linear relationship between the firing rate of an active single-cell neuron and the injected current, as noted in ``Rate Models for Conductance-Based Cortical Neuronal Networks," by Shriki et al.
Note: Your browser may not currently support MathML. See our browser support page for additional details. You can always view the correct math in the PDF version.
We seek to understand how to reduce complicated neuronal models into simplified versions that still capture essential features of the neuron. It has been observed through the detailed Hodgkin-Huxley model that the firing rate of a cell depends on current input. This module examines the dynamics of an active single-compartment cell and verifies the existence of a linear relationship between the firing rate and the injected current. It will reproduce the results found in Section 2.1 of “Rate Models for Conductance-Based Cortical Neuronal Networks," by Shriki et al [1]. In particular, it verifies Figures 1 and 2 of the Shriki paper through MATLAB simulations.
The Hodgkin-Huxley model of a single-compartment cell obeys
with the following definitions:
| Variables | Description |
|
|
membrane potential of the cell at time |
|
|
membrane capacitance |
|
|
leak conductance |
|
|
reversal potential of the leak current |
|
|
active ionic currents, varies with time |
|
|
externally applied current. |
If
In order to generate f-I curves, we must stimulate the cell with varying current input (with the current kept constant across each simulation), and count the number of times it fired each time. But first, we need to understand the active ionic currents, an integral part of Equation 1.
There are three types of active currents, Na, K, and A. The first two currents are gated by sodium and potassium channels respectively. They obey the following equations:
Here,
The A-current is introduced to linearize the f-I curve, as we shall later see in Figure 1.
Adding these currents, we get
In Shriki et al., the following equations and parameters were used:
We first solve for the initial condition
Then we solve Equation 6 using Backwards Euler, noting that Equation 9, Equation 10, Equation 11, Equation 12
use
In MATLAB, Equation 13 is written as
top = v(i) + dt/Cm*(g_L*E_L+gbar_na*m_inf^3*h(i+1)*E_na+...
gbar_k*n(i+1)^4*E_k+gbar_A*a_inf^3*b(i+1)*E_k+I_app);
bottom = 1 + dt/Cm*(g_L+...
gbar_na*m_inf^3*h(i+1)+gbar_k*n(i+1)^4+gbar_A*a_inf^3*b(i+1));
v(i+1) = top/bottom;
We say that a cell has spiked, or generated an action potential, if
Shriki et. al's Figures 1 and 2 and their respective insets were reproduced below by running the single-cell model described in section 2.2.
|
|
Figure 1 is an exact replica of Shriki's Figure 1. Thus, we confirm that the active current
In Shriki's Figure 1 inset, there is another action potential at about 50 msec, which is not realized in Figure 2. The reason could be that Shriki did not state the assumption that the cell starts at steady state, which given the parameters, came out to be -72.73 mV. It is possible that he assumed the cell starts at 65 mV or 70 mV, common rest potentials in neuroscience. If that is the case, then the model will spike at about 50 msec.
Besides the active current, the leak conductance
|
|
By reproducing Shriki Figures 1 and 2, we have confirmed that the firing rate of an active cell depends linearly on the applied current.
This Connexions module describes work conducted as part of Rice University's VIGRE program, supported by National Science Foundation grant DMS–0739420. I would like to thank Dr. Steve Cox for leading our Computational Neuroscience VIGRE team. Also thanks to the entire group whose members include Jay Raol, Tony Kellems, Eva Dyer, Katherine Ward, Eric Reinelt, Mingbo Cai, Ben Leung, Ryan George, and Aneesh Mehta.