Lateral dendrodenditic inhibition in the Olfactory Bulb (David et al. 2008)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:116094
Mitral cells, the principal output neurons of the olfactory bulb, receive direct synaptic activation from primary sensory neurons. Shunting inhibitory inputs delivered by granule cell interneurons onto mitral cell lateral dendrites are believed to influence spike timing and underlie coordinated field potential oscillations. Lateral dendritic shunt conductances delayed spiking to a degree dependent on both their electrotonic distance and phase of onset. Recurrent inhibition significantly narrowed the distribution of mitral cell spike times, illustrating a tendency towards coordinated synchronous activity. This result suggests an essential role for early mechanisms of temporal coordination in olfaction. The model was adapted from Davison et al, 2003, but include additional noise mechanisms, long lateral dendrite, and specific synaptic point processes.
Reference:
1 . David F, Linster C, Cleland TA (2008) Lateral dendritic shunt inhibition can regularize mitral cell spike patterning. J Comput Neurosci 25:25-38 [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network; Neuron or other electrically excitable cell;
Brain Region(s)/Organism: Olfactory bulb;
Cell Type(s): Olfactory bulb main mitral GLU cell; Olfactory bulb main interneuron granule MC GABA cell;
Channel(s): I Na,t; I L high threshold; I A; I K; I K,Ca;
Gap Junctions:
Receptor(s): GabaA; AMPA;
Gene(s):
Transmitter(s):
Simulation Environment: NEURON; MATLAB;
Model Concept(s): Temporal Pattern Generation; Synchronization; Simplified Models; Active Dendrites; Olfaction;
Implementer(s):
Search NeuronDB for information about:  Olfactory bulb main mitral GLU cell; Olfactory bulb main interneuron granule MC GABA cell; GabaA; AMPA; I Na,t; I L high threshold; I A; I K; I K,Ca;
/
DendroDendriticInhibition
ShortDendrite
cadecay.mod *
currentGauss.mod
flushf.mod *
GradGABAa.mod
ipscGauss.mod
kA.mod *
kca.mod *
kfasttab.mod *
kM.mod *
kslowtab.mod *
lcafixed.mod *
nafast.mod *
nagran.mod *
shuntInhib.mod *
stim2.mod
bulb.hoc
experiment_fig1cde.hoc
experiment_fig1fg.hoc
experiment_fig2bdf.hoc
experiment_fig3.hoc
experiment_fig4.hoc
experiment_fig5.hoc
experiment_fig6.hoc
fig1cde.ses
fig1fg.ses
fig2bdf.ses
fig3.ses
fig4.ses
fig5.ses
fig6.ses
figure1cde.m
figure1fg.m
figure2bdf.m
figure3.m
figure4abcd.m
figure4ef.m
figure5.m
figure6.asv
figure6.m
fit_ML_normal.m
granule.tem
init.hoc
mathslib.hoc *
mitral.tem
mosinit.hoc *
parameters_fig1cde.hoc
parameters_fig1fg.hoc
parameters_fig2bdf.hoc
parameters_fig3.hoc
parameters_fig4.hoc
parameters_fig5.hoc
parameters_fig6.hoc
plot_normal.m
tabchannels.dat *
tabchannels.hoc
                            
function figure2bdf

% n_del = 41 pour 40Hz
% n_del = 41 pour 30Hz
% n_del = 61 pour 20 Hz
% inhib_ipsc_del_dx(fich_pa,n_del,n_fig)
% traite les donnees du programme gGABAainfluence
% fich_pa est le fichier des temps de spike des differents essais mis bout
% a bout en colonne.

nmit = 10;
n_del = 60;
n_fig = 10;
for st=1:3
    if st==1
        clear('pa')
        pa = dlmread('fig2bdf_0.500000.dat');
    elseif st==2
        clear('pa')
        pa = dlmread('fig2bdf_0.800000.dat');
    elseif st==3
        clear('pa')
        pa = dlmread('fig2bdf_1.800000.dat');
    end
    % creation de la matrice de dimension (n_dx, n_gGABA, n_del)
    for k=1:n_del
        for i=1:nmit
            isi(k,i) = pa((k-1)*nmit+i,11)-pa((k-1)*nmit+i,10);
            isi(1,i) = pa(i,11)-pa(i,10);
            if isi(k,i)<15
               isi(k,i) = pa((k-1)*nmit+i,12)-pa((k-1)*nmit+i,11);
               isi(1,i) = pa(i,12)-pa(i,11);
               if isi(k,i)<15
                   isi(k,i) = pa((k-1)*nmit+i,13)-pa((k-1)*nmit+i,12);
                   isi(1,i) = pa(i,13)-pa(i,12);
               end
            end
            retard(k,i) = isi(k,i)-isi(1,i);
            del(k,i)= k-1;
        end
    end
    retard;
    del;
    figure(n_fig+st-1); hold on
    for i=1:nmit
        plot(del(3:end,i)*2*pi/(isi(1,i)),retard(3:end,i),'k','Linewidth',1)
    end

    xlabel('IPSC phase','Fontsize',12)
    set(gca,'Fontsize',12)
    set(gca,'XTick',[0,pi,2*pi])
    set(gca,'XTickLabel',{'0','pi','2pi'})
    ylabel('\Deltat (ms)','Fontsize',12)
    %title('Influence of IPSC timing','Fontsize',20)
    axis([0 2*pi 0 8])

end