Purkinje neuron network (Zang et al. 2020)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:266799
Both spike rate and timing can transmit information in the brain. Phase response curves (PRCs) quantify how a neuron transforms input to output by spike timing. PRCs exhibit strong firing-rate adaptation, but its mechanism and relevance for network output are poorly understood. Using our Purkinje cell (PC) model we demonstrate that the rate adaptation is caused by rate-dependent subthreshold membrane potentials efficiently regulating the activation of Na+ channels. Then we use a realistic PC network model to examine how rate-dependent responses synchronize spikes in the scenario of reciprocal inhibition-caused high-frequency oscillations. The changes in PRC cause oscillations and spike correlations only at high firing rates. The causal role of the PRC is confirmed using a simpler coupled oscillator network model. This mechanism enables transient oscillations between fast-spiking neurons that thereby form PC assemblies. Our work demonstrates that rate adaptation of PRCs can spatio-temporally organize the PC input to cerebellar nuclei.
Reference:
1 . Zang Y, Hong S, De Schutter E (2020) Firing rate-dependent phase responses of Purkinje cells support transient oscillations. Elife [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell; Realistic Network;
Brain Region(s)/Organism: Cerebellum;
Cell Type(s): Cerebellum Purkinje GABA cell;
Channel(s):
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON; MATLAB;
Model Concept(s): Phase Response Curves; Action Potentials; Spatio-temporal Activity Patterns; Synchronization; Action Potential Initiation; Oscillations;
Implementer(s): Zang, Yunliang ; Hong, Sungho [shhong at oist.jp];
Search NeuronDB for information about:  Cerebellum Purkinje GABA cell;
/
PRC_network_code
figure3
mod
abBK.mod *
apthreshold.mod *
CaP_Raman.mod *
cdp_spiny.mod *
cdp10AIS.mod *
cdp20N_FD2.mod *
cdp4N.mod *
distr.mod *
ihnew.mod *
Isinunoisy.mod
kv11.mod *
Kv1A.mod *
kv3.mod *
Kv34.mod *
kv4hybrid2.mod *
kv4s.mod *
mslo.mod *
nap.mod *
peak.mod *
pkjlk.mod *
rsgold.mod *
SK2.mod *
syn2.mod *
TCa.mod *
                            
TITLE Low threshold calcium current Cerebellum Purkinje Cell Model

COMMENT

Q10 is estimated from this work, Temperature dependence of T-type Calcium channel gating, NEUROSCIENCE
written by Yunliang Zang according to the data provided by Stephane Diudone, compared with the summarised data from stephane,
T type calcium channels has two gates. so the activation curve was refitted.
The junction potential is -6.6 mV
It does not work even changing it back to cai
April 16th, 2015
This version does not contribute to the calcium concentration and BK together with SK. 
ENDCOMMENT


INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}

NEURON {
        SUFFIX CaT3_1
:        USEION ca READ cai, cao WRITE ica VALENCE 2
:        NONSPECIFIC_CURRENT i
	USEION ca READ cai,cao
	USEION Ca WRITE iCa VALENCE 2
        RANGE g, pcabar, minf, taum, hinf, tauh
    	RANGE iCa, m ,h
:    THREADSAFE
    }

UNITS {
        (molar) = (1/liter)
        (mV) =  (millivolt)
        (mA) =  (milliamp)
        (mM) =  (millimolar)

}

CONSTANT {
    q10 = 1.0913        :estimate from Iftinca
	F = 9.6485e4 (coulombs)
	R = 8.3145 (joule/kelvin)
}

PARAMETER {
        v               (mV)
        celsius (degC)
        eca (mV)
	pcabar  = 2.5e-4 (cm/s)
        cai = 1e-4  (mM)           : adjusted for eca=120 mV
	cao = 2  (mM)
	
	v0_m_inf = -42.206 (mV)
	v0_h_inf = -75.118 (mV)
	vshift = -6.6			:liquid junction potential

	k_m_inf = -4.7056 (mV)
	k_h_inf = 6.4635  (mV)
	
	C_tau_m = 1.2757
	A_tau_m = -2.3199
	B_tau_m = 2.5712
	v0_tau_m1 = -48.048 (mV)
	v0_tau_m2 = -28.386 (mV)
	k_tau_m1 = 30.655 (mV)
	k_tau_m2 = 9.6306 (mV)
	
	C_tau_h = 0.0076
	A_tau_h = 0.17746
	B_tau_h = 0.13402
	v0_tau_h1 = -58.535 (mV)
	v0_tau_h2=-101.436
	k_tau_h1 = 6.2692 (mV)
	k_tau_h2 = -5.5845 (mV)
}
    

STATE {
        m h
}

ASSIGNED {
        iCa     (mA/cm2)
	g        (coulombs/cm3) 
        minf
        taum   (ms)
        hinf
        tauh   (ms)
        qt
	T (kelvin)
	E (volt)
	zeta
}

BREAKPOINT {
	SOLVE castate METHOD cnexp 

       iCa = (1e3) *pcabar*m*m *m*h * g

}

DERIVATIVE castate {
        evaluate_fct(v)

        m' = (minf - m) / taum
        h' = (hinf - h) / tauh
}

FUNCTION ghk2( v (mV), ci (mM), co (mM), z )  (coulombs/cm3) {
    E = (1e-3) * v
      zeta = (z*F*E)/(R*T)


    if ( fabs(1-exp(-zeta)) < 1e-6 ) {
        ghk2 = (1e-6) * (z*F) * (ci - co*exp(-zeta)) * (1 + zeta/2)
    } else {
        ghk2 = (1e-6) * (z*zeta*F) * (ci - co*exp(-zeta)) / (1-exp(-zeta))
    }
}


UNITSOFF
INITIAL {
	
	T = kelvinfkt (celsius)
	    qt = q10^((celsius-32 (degC))/10 (degC))
        evaluate_fct(v)
        m = minf
        h = hinf
}

PROCEDURE evaluate_fct(v(mV)) { 

        minf = 1.0 / ( 1 + exp((v  - v0_m_inf-vshift)/k_m_inf) )^(1/3)
        
        hinf = 1.0 / ( 1 + exp((v - v0_h_inf-vshift)/k_h_inf) )

	taum = 1/( C_tau_m + A_tau_m / (1+exp((v0_tau_m1-v-vshift)/ k_tau_m1))+ B_tau_m/ (1+exp((v0_tau_m2-v-vshift)/k_tau_m2)))/qt

	tauh = 1/( C_tau_h + A_tau_h / (1+exp((v0_tau_h1-v-vshift)/ k_tau_h1))+ B_tau_h/ (1+exp((v0_tau_h2-v-vshift)/k_tau_h2)))/qt

	g = ghk2(v-vshift, cai, cao, 2)
}

FUNCTION kelvinfkt( t (degC) )  (kelvin) {
    kelvinfkt = 273.19 + t
}

UNITSON