neuroinformatics 2017, prague · neuroscience: exploring the brain, lippincott williams &...

17
Neuroinformatics 2017, Prague March 9, 2017 Basic neuron models

Upload: others

Post on 29-Jun-2020

16 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Neuroinformatics 2017, Prague

March 9, 2017

Basic neuron models

Page 2: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Brainbows

I Auditory portion of a mouse brainstem. A special gene (extracted fromcoral and jellyfish) was inserted into the mouse in order to map intricateconnection. As the mouse thinks, fluorescent proteins spread out alongneural pathways

I This view of the hippocampus shows the smaller glial cells (small ovals)in the proximity of neurons (larger with more filaments).

I A single neuron (red) in the brainstemI http://www.wired.com/science/discoveries/multimedia/

2007/10/gallery_fluorescentneurons

Page 3: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Neuron as input-output device

Page 4: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Neuron types

Page 5: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Morphometric-based classification of (inhibitory) interneurons

Page 6: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Microcircuit of the Neocortex

Page 7: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Electrically based neuron classification

Page 8: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Synapse

Page 9: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Chemical Synapse

Page 10: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Digital Analog Device

Page 11: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Electrical and Chemical Synapse

Page 12: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Ion channels

++

++ +

+

++

+

+

A. Leakagechannel

+

+

++

++

+

+ ++

+

+

D. Ionotropic

++

++ +

+

+

+

+

B. Voltage-gated ion channel

+

+

+

++

++

+

+

C. Ion pump

+

+

++

++

+

+ ++

+

+

E. Metabotropic (second messenger)

Neurotransmitter-gated ion channels

Page 13: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Synapse

I excitatory neurotransimitters-DA (dopamine), Gu (glutamate),GABA (A-fast, B-slow)

I inhibitory-neurotransmitters GABA (Gamma-aminobutyric acid),http://cs.wikipedia.org/wiki/Kyselina_gama-aminomseln

I synaptic cleft - 1µ, synaptic vesticles

CaCa

Neurotransmitter

Synaptic vescicleVoltage-gated Ca channel2+

Neurotransmitterreceptor

Page 14: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

excitatory and inhibitory potentials

Page 15: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Conductance-based models

− IC(t) = cmdVm(t)

dtIC(t) = gLVm(t) + Isyn(t), Iext = 0

Isyn = gsyn(t)(Vm(t)− Esyn)

τsyndgsyn(t)

dt= −gsyn(t) + δ(t − tpre − tdelay)

g

m

gL

C

Time

I (t)/5syn

g (t)*5

V (t)

A. Electric circuit of basic synapse

Cap

acito

r

Battery

Resistor

B. Time course of variables

0 2 4 6 8 10−2

0

2

4

m

syn

Page 16: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

MATLAB Program

1 %% Synaptic conductance model to simulate an EPSP2 clear; clf; hold on;34 %% Setting some constants and initial values5 c_m=1; g_L=1; tau_syn=1; E_syn=10; delta_t=0.01;6 g_syn(1)=0; I_syn(1)=0; v_m(1)=0; t(1)=0;78 %% Numerical integration using Euler scheme9 for step=2:10/delta_t

10 t(step)=t(step-1)+delta_t;11 if abs(t(step)-1)<0.001; g_syn(step-1)=1; end12 g_syn(step)= (1-delta_t/tau_syn) * g_syn(step-1);13 I_syn(step)= g_syn(step) * (v_m(step-1)-E_syn);14 v_m(step) = (1-delta_t/c_m*g_L) * v_m(step-1) ...15 - delta_t/c_m * I_syn(step);16 end1718 %% Plotting results19 plot(t,v_m); plot(t,g_syn*5,’r--’); plot(t,I_syn/5,’k:’)

Page 17: Neuroinformatics 2017, Prague · Neuroscience: exploring the brain, Lippincott Williams & Wilkins , 3rd edition. ... , Neurobiology, Oxford University Press, 3rd edition. Christof

Further Readings

Mark F. Bear, Barry W. Connors, and Michael A. Paradiso (2006),Neuroscience: exploring the brain, Lippincott Williams & Wilkins ,3rd edition.

Eric R. Kandel, James H. Schwartz, and Thomas M. Jessell (2000),Principles of neural science, McGraw-Hill, 4th edition

Gordon M. Shepherd (1994), Neurobiology, Oxford University Press, 3rdedition.

Christof Koch (1999), Biophysics of computation; informationprocessing in single neurons, Oxford University Press

Christof Koch and Idan Segev (eds.) (1998), Methods in neuralmodelling, MIT Press, 2nd edition.

C. T. Tuckwell (1988), Introduction to theoretical neurobiology,Cambridge University Press.

Hugh R. Wilson (1999) Spikes, decisions and actions: dynamicalfoundations of neuroscience, Oxford University Press. See also hispaper in J. Theor. Biol. 200: 375–88, 1999.