forked from dylansdaniels/website_redesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dylansdaniels#14 from asoplata/add-adapted-under-t…
…he-hood content: add under the hood sections
- Loading branch information
Showing
50 changed files
with
802 additions
and
487 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
64 changes: 64 additions & 0 deletions
64
content/03_assumptions/04_neurons_morphology_and_physiology.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!-- | ||
# Title: 3.4 Neurons: Morphology and Physiology | ||
# Updated: 2024-01-16 | ||
# | ||
# Contributors: | ||
# Dylan Daniels | ||
--> | ||
|
||
<!-- compare original: https://jonescompneurolab.github.io/hnn-under_the_hood/02_morphology-physiology/02_morphology-physiology --> | ||
|
||
# 3.4 Neurons: Morphology and Physiology | ||
|
||
The template cortical column model contains the following types of neurons: | ||
|
||
1. L2/3 multi-compartment pyramidal neurons (PN) | ||
2. L2/3 single compartment inhibitory neurons | ||
3. L5 multi-compartment pyramidal neurons | ||
4. L5 single compartment inhibitory neurons | ||
|
||
Membrane voltages in each simulated compartment are calculated using the standard Hodgkin-Huxley parallel conductance equations. Current flow between compartments are calculated using properties of the cable equation [^1]. | ||
|
||
### Morphology | ||
|
||
- Layer 2/3: | ||
- PN: 7 compartments including 3 apical dendrites, 3 basal dendrites, 1 soma | ||
- Inhibitory basket neurons: single compartment (soma) | ||
|
||
- Layer 5: | ||
- PN: 9 compartments including 5 apical dendrites, 3 basal dendrites, 1 soma. | ||
- As shown below, L5 PNs have longer dendrites than L2/3 PNs. L5 PN somas based in L5 with long apical dendrites reaching into L2/3. | ||
- Inhibitory Basket neurons: single compartment (soma). | ||
- L2/3 and L5 basket interneurons are identical but their synaptic parameters and local circuit connectivity differs. | ||
|
||
<div style="display:block; width:50%; margin: 0 auto;"> | ||
![](./images/detailed-connectivity.png) | ||
</div> | ||
|
||
<table style="border:none"> | ||
<tr> | ||
<td style="border:none" width=> | ||
![](./images/morph-params-01.png) | ||
</td> | ||
<td style="border:none; vertical-align:middle;"> | ||
![](./images/morph-params-02.png) | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
### Physiology | ||
|
||
The following table displays the ion channels and mechanisms in each cell type in the model (**X** indicates the presence of the channel/mechanism in the cell type; for advanced modelers: to see the NEURON simulator equations used in the channel/mechanism, click on the links in the table). | ||
|
||
| Cell Type | Na (fast) | K (fast) | Km | KCa | Ca (L-type) | Ca (T-type) | Ca (decay) | HCN | Leak | Dipole | | ||
|:--------------:|----------:|:--------:|:--:|:---:|:-----------:|:-----------:|:----------:|:---:|:----:|:------:| | ||
| Basket | X | X | | | | | | | X | | | ||
| L2/3 Pyramidal | X | X | X | | | | | | X | X | | ||
| P5 Pyramidal | X | X | X | X | X | X | X | X | X | X | | ||
|
||
In the table above, Na (fast) / K (fast) are the fast sodium and potassium channels responsible for generating action potentials. Km is the muscarine sensitive potassium channel, with a relatively slow time-constant and KCa is the calcium-dependent potassium channel, which contributes to hyperpolarization after calcium influx into the cell. The L- and T-type calcium (Ca) channels represent the high-threshold and low-threshold activated calcium channels which together with the hyperpolarization-activated cyclic nucleotide gated channel (HCN) contribute to bursting. Ca decay represents the calcium extrusion pump, which causes intracellular calcium to decay towards a baseline level. Leak represents the passive channel, with constant conductance. Dipole represents the mechanism that takes into account the primary axial current flow within pyramidal neuron dendrites, responsible for the generation of simulated signals comparable to MEG/EEG recordings. For more details see [^2]. | ||
|
||
## Tutorial References | ||
|
||
[^1]: Dayan, P. & Abbott, L. F. Theoretical neuroscience. 806, (Cambridge, MA: MIT Press, 2001). | ||
[^2]: Jones, S. R. et al. Quantitative analysis and biophysically realistic neural modeling of the MEG mu rhythm: rhythmogenesis and modulation of sensory-evoked responses. J. Neurophysiol. 102, 3554–3572 (2009). |
Oops, something went wrong.