TITLE Non-inactivating inwardly rectifying potassium current (Kir2.3)
COMMENT
neuromodulation is added as functions:
modulation = 1 + damod*(maxMod-1)*level
where:
damod [0]: is a switch for turning modulation on or off {1/0}
maxMod [1]: is the maximum modulation for this specific channel (read from the param file)
e.g. 10% increase would correspond to a factor of 1.1 (100% +10%) {0-inf}
level [0]: is an additional parameter for scaling modulation.
Can be used simulate non static modulation by gradually changing the value from 0 to 1 {0-1}
[] == default values
{} == ranges
ENDCOMMENT
NEURON {
SUFFIX kir_ms
USEION k READ ek WRITE ik
RANGE gbar, gk, ik, shift
RANGE damod, maxMod, level
}
UNITS {
(S) = (siemens)
(mV) = (millivolt)
(mA) = (milliamp)
}
PARAMETER {
gbar = 0.0 (S/cm2)
shift = 0.0 (mV)
q = 1 : body temperature 35 C
damod = 0
maxMod = 1
level = 0
}
ASSIGNED {
v (mV)
ek (mV)
ik (mA/cm2)
gk (S/cm2)
minf
mtau (ms)
}
STATE { m }
BREAKPOINT {
SOLVE states METHOD cnexp
gk = gbar*m*modulation()
ik = gk*(v-ek)
}
DERIVATIVE states {
rates()
m' = (minf-m)/mtau*q
}
INITIAL {
rates()
m = minf
}
PROCEDURE rates() {
UNITSOFF
minf = 1/(1+exp((v-(-82)-shift)/13))
mtau = 1/(exp((v-(-103))/(-14.5))+0.125/(1+exp((v-(-35))/(-19))))
UNITSON
}
FUNCTION modulation() {
: returns modulation factor
modulation = 1 + damod*(maxMod-1)*level
}
COMMENT
Original model by Wolf et al (2005) [1] for the rat MSN cells from the
nucleus accumbens. The activation curve was fitted to a mouse Kir2.1
channel expressed in HEK cells [2] and shifted to match extracellular
concentration of K in rat. Measured half-activation values are -109.3
mV (striatonigral MSN) and -113.2 mV (striatopallidal MSN) [6, Supp
Tab.1]. Time constants were derived from Aplysia data [3] and adjusted
to match the rat experiments [1]. Time constant was further tuned [4]
to fit the rat data below -80 mV [5]. Kinetics is corrected to the body
temperature 35 C [4].
Non-inactivating Kir current was observed in cells expressing Kir2.2
and/or Kir2.3 [5]. Activation variable with m^1 kinetics is used [1,4].
Smooth fit of the time constants by Alexander Kozlov <akozlov@kth.se>.
[1] Wolf JA, Moyer JT, Lazarewicz MT, Contreras D, Benoit-Marand M,
O'Donnell P, Finkel LH (2005) NMDA/AMPA ratio impacts state transitions
and entrainment to oscillations in a computational model of the nucleus
accumbens medium spiny projection neuron. J Neurosci 25(40):9080-95.
[2] Kubo Y, Murata Y (2001) Control of rectification and permeation by
two distinct sites after the second transmembrane region in Kir2.1 K+
channel. J Physiol 531, 645-660.
[3] Hayashi H, Fishman HM (1988) Inward rectifier K+ channel kinetics
from analysis of the complex conductance of aplysia neuronal membrane.
Biophys J 53, 747-757.
[4] Steephen JE, Manchanda R (2009) Differences in biophysical properties
of nucleus accumbens medium spiny neurons emerging from inactivation of
inward rectifying potassium currents. J Comput Neurosci 27(3):453-70
[5] Mermelstein PG, Song WJ, Tkatch T, Yan Z, Surmeier DJ (1998)
Inwardly rectifying potassium (IRK) currents are correlated with IRK
subunit expression in rat nucleus accumbens medium spiny neurons. J
Neurosci 18(17):6650-61.
[6] Shen W, Tian X, Day M, Ulrich S, Tkatch T, Nathanson NM, Surmeier DJ
(2007) Cholinergic modulation of Kir2 channels selectively elevates
dendritic excitability in striatopallidal neurons. Nat Neurosci
10(11):1458-66.
ENDCOMMENT