Synaptic integration by MEC neurons (Justus et al. 2017)

 Download zip file 
Help downloading and running models
Accession:222359
Pyramidal cells, stellate cells and fast-spiking interneurons receive running speed dependent glutamatergic input from septo-entorhinal projections. These models simulate the integration of this input by the different MEC celltypes.
Reference:
1 . Justus D, Dalügge D, Bothe S, Fuhrmann F, Hannes C, Kaneko H, Friedrichs D, Sosulina L, Schwarz I, Elliott DA, Schoch S, Bradke F, Schwarz MK, Remy S (2017) Glutamatergic synaptic integration of locomotion speed via septoentorhinal projections. Nat Neurosci 20:16-19 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell;
Brain Region(s)/Organism: Entorhinal cortex;
Cell Type(s): Entorhinal cortex pyramidal cell; Entorhinal cortex stellate cell; Entorhinal cortex fast-spiking interneuron;
Channel(s): I K; I Na,t; I h;
Gap Junctions:
Receptor(s): AMPA;
Gene(s):
Transmitter(s): Glutamate;
Simulation Environment: NEURON;
Model Concept(s): Synaptic Integration; Simplified Models;
Implementer(s): Justus, Daniel [daniel.justus at dzne.de];
Search NeuronDB for information about:  AMPA; I Na,t; I K; I h; Glutamate;
/
NEURON_mEC
data
README.html
exp2syn_depress.mod
h.mod *
kap.mod *
kdr.mod *
nax.mod
vecevent.mod *
cinit.hoc
EPSPparam.hoc
GUI.hoc
GUIfunctions.hoc
init.hoc
insert_noise_Syn.hoc
insert_real_Syn.hoc
insertsyn.hoc
morphology.hoc
mosinit.hoc *
Parameters.hoc
run_real_input.hoc
screenshot1.png
screenshot2.png
screenshot3.png
Voltage.ses
                            
:  Vector stream of events

NEURON {
	ARTIFICIAL_CELL VecStim
}

ASSIGNED {
	index
	etime (ms)
	space
}

INITIAL {
	index = 0
	element()
	if (index > 0) {
		net_send(etime - t, 1)
	}
}

NET_RECEIVE (w) {
	if (flag == 1) {
		net_event(t)
		element()
		if (index > 0) {
			net_send(etime - t, 1)
		}
	}
}

VERBATIM
extern double* vector_vec();
extern int vector_capacity();
extern void* vector_arg();
ENDVERBATIM

PROCEDURE element() {
VERBATIM	
  { void* vv; int i, size; double* px;
	i = (int)index;
	if (i >= 0) {
		vv = *((void**)(&space));
		if (vv) {
			size = vector_capacity(vv);
			px = vector_vec(vv);
			if (i < size) {
				etime = px[i];
				index += 1.;
			}else{
				index = -1.;
			}
		}else{
			index = -1.;
		}
	}
  }
ENDVERBATIM
}

PROCEDURE play() {
VERBATIM
	void** vv;
	vv = (void**)(&space);
	*vv = (void*)0;
	if (ifarg(1)) {
		*vv = vector_arg(1);
	}
ENDVERBATIM
}
        


Loading data, please wait...