Edit History

Wiki » History » Version 4

Boris Marin, 30 Apr 2014 14:58

1 1 Boris Marin
L5 Pyramidal Neuron Almog and Korngreen (2014)
2 1 Boris Marin
==============================================
3 1 Boris Marin
4 1 Boris Marin
Model description
5 1 Boris Marin
-----------------
6 1 Boris Marin
7 4 Boris Marin
This model originally appeared in **Almog M, Korngreen A \* A Quantitative Description of Dendritic Conductances and Its Application to Dendritic Excitation in Layer 5 Pyramidal Neurons [J Neurosci 34(1):1](http://www.jneurosci.org/content/34/1/182).
8 1 Boris Marin
The relevant *neuron* files can be downloaded from [modelDB](http://senselab.med.yale.edu/modeldb/ShowModel.asp?model=151825).
9 1 Boris Marin
10 1 Boris Marin
11 1 Boris Marin
12 4 Boris Marin
h2. Conversion to NeuroML
13 4 Boris Marin
We are currently converting the original model to NeuroML. Most *.mod* mechanisms can be mapped to [ChannelML](http://neuroml.org/NeuroMLValidator/Transform.jsp?localFile=NeuroMLFiles/Schemata/v1.8.1/Level2/ChannelML_v1.8.1.xsd&xslFile=NeuroMLFiles/Schemata/XSD_Readable.xsl) with exception of the Calcium mechanisms described in terms of the [GHK](http://en.wikipedia.org/wiki/GHK_flux_equation) formalism. These latter needed to be translated to [NeuroML2](http://www.neuroml.org/neuroml2.php), which supports arbitrary current laws.
14 4 Boris Marin
h3. *NeuroConstruct* project
15 4 Boris Marin
h4. Ion Mechanisms
16 4 Boris Marin
Both original and NeuroML versions of the ionic mechanisms were imported into a *neuroConstruct* project, with simulation configurations allowing the comparison of both implementations. Mechanisms were named according the following convention: the original *.mod*\_ mechanisms were suffixed with **nrn*, while the NeuroML mechanisms had no suffix.
17 1 Boris Marin
18 1 Boris Marin
h4. Morphology
19 1 Boris Marin
Cell [morphology](http://senselab.med.yale.edu/modeldb/ShowModel.asp?model=151825&file=\Demo\cells\A140612.hoc) from the*modelDB\_ project was exported to NeuroML using *neuron*.
20 4 Boris Marin
h3. Idiosyncrasies in the conversion
21 4 Boris Marin
h4. Inhomogeneous parameters over the dendritic tree
22 4 Boris Marin
p=. ![]({width: 80%}gih_comparison.png)
23 4 Boris Marin
The original *neuron* version results in piecewise linear interpolation of the distribution over each section.
24 4 Boris Marin
Compare the *neuroConstuct* generated code
25 4 Boris Marin
\<pre\>
26 4 Boris Marin
//neuroconstruct generated
27 4 Boris Marin
objref PathLengthApicalDends
28 4 Boris Marin
 PathLengthApicalDends = new SubsetDomainIterator
29 4 Boris Marin
 PathLengthApicalDends.update {
30 4 Boris Marin
 x = PathLengthApicalDends.x
31 4 Boris Marin
 p = PathLengthApicalDends.p
32 4 Boris Marin
 gmax\_iA = 100000.0** (2.82824E-4 + (0.0033165 \* exp(((–1) \* 0.0117721) \* p))) // 100000.0 to convert from nc to NEURON units
33 4 Boris Marin
 }
34 3 Boris Marin
35 4 Boris Marin
</pre>
36 4 Boris Marin
With the original *.hoc* specification
37 4 Boris Marin
38 4 Boris Marin
    gbar_iA(0:1) = (gka_start+gka_beta*exp(gka_alpha*dist1)):(gka_start+gka_beta*exp(gka_alpha*dist2))