A Model Circuit of Thalamocortical Convergence (Behuret et al. 2013)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:150240
“… Using dynamic-clamp techniques in thalamic slices in vitro, we combined theoretical and experimental approaches to implement a realistic hybrid retino-thalamo-cortical pathway mixing biological cells and simulated circuits. … The study of the impact of the simulated cortical input on the global retinocortical signal transfer efficiency revealed a novel control mechanism resulting from the collective resonance of all thalamic relay neurons. We show here that the transfer efficiency of sensory input transmission depends on three key features: i) the number of thalamocortical cells involved in the many-to-one convergence from thalamus to cortex, ii) the statistics of the corticothalamic synaptic bombardment and iii) the level of correlation imposed between converging thalamic relay cells. In particular, our results demonstrate counterintuitively that the retinocortical signal transfer efficiency increases when the level of correlation across thalamic cells decreases. …”
Reference:
1 . Behuret S, Deleuze C, Gomez L, Fregnac Y, Bal T (2013) Cortically-controlled population stochastic facilitation as a plausible substrate for guiding sensory transfer across the thalamic gateway PLoS Computational Biology 9(12):e1003401 [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network;
Brain Region(s)/Organism: Neocortex; Thalamus; Retina;
Cell Type(s): Thalamus geniculate nucleus/lateral principal GLU cell; Thalamus reticular nucleus GABA cell; Neocortex U1 L5B pyramidal pyramidal tract GLU cell; Retina ganglion GLU cell; Thalamus lateral geniculate nucleus interneuron;
Channel(s): I Na,t; I T low threshold; I K; I M;
Gap Junctions:
Receptor(s): GabaA; AMPA;
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Synaptic Convergence;
Implementer(s): Behuret, Sebastien [behuret at unic.cnrs-gif.fr];
Search NeuronDB for information about:  Thalamus geniculate nucleus/lateral principal GLU cell; Thalamus reticular nucleus GABA cell; Retina ganglion GLU cell; Neocortex U1 L5B pyramidal pyramidal tract GLU cell; GabaA; AMPA; I Na,t; I T low threshold; I K; I M;
/
TCconvergenceModel
README.html
cadecay.mod *
ConductancePattern.mod
ConstantCurrent.mod
hh2.mod *
IM.mod
IT.mod
ITGHK.mod
RandomGenerator.mod
RetinalInput.mod
SineWaveCurrent.mod
SynapticNoise.mod
Demo.hoc
DEMO.png
Geometry.hoc
GUI.hoc
mosinit.hoc
Recording.hoc
Run.hoc
screenshot.png
Simulation.hoc
Templates.hoc
                            
//
// GUI.hoc - Graphical user interface initialization
//
// Thalamocortical convergence studies
// Sébastien Béhuret, UNIC/CNRS Paris, 2013
//

objref GUIBox, GUIDeck

proc CleanAndExit() {
	StopRecording()
	DestroyGeometry()
	quit()
}

proc BuildGUI() {
	nrnmainmenu()
	nrncontrolmenu()

	GUIBox = new HBox()
	GUIBox.intercept(1)

	xpanel("main menu")
	xlabel("========================")
	xlabel("TC CONVERGENCE INTERFACE")
	xlabel("========================")
	xlabel("")
	xbutton("geometry", "GUIDeck.flip_to(0)")
	xbutton("inputs", "GUIDeck.flip_to(1)")
	xbutton("noise", "GUIDeck.flip_to(2)")
	xbutton("recording", "GUIDeck.flip_to(3)")
	xlabel("==============================")
	xbutton("exit", "CleanAndExit()")
	xlabel("")
	xpanel()

	GUIDeck = new Deck()
	GUIDeck.intercept(1)

	xpanel("geometry")
	GeometryGUI()
	xpanel()

	xpanel("inputs")
	InputsGUI()
	xpanel()

	xpanel("noise")
	NoiseGUI()
	xpanel()

	xpanel("recording")
	RecordingGUI()
	xpanel()

	GUIDeck.intercept(0)
	GUIDeck.map("gui deck")
	GUIDeck.flip_to(0)
	GUIBox.intercept(0)
	GUIBox.map("gui box")
}