NEURON: Channel and Cell Builder

Total Page:16

File Type:pdf, Size:1020Kb

NEURON: Channel and Cell Builder Department of Mathematical Sciences B12412: Computational Neuroscience and Neuroinformatics NEURON http://www.neuron.yale.edu/neuron/ NEURON is a simulation environment for modeling individual neurons and networks of neurons. It provides tools for conveniently building, managing, and using models in a way that is numerically sound and computationally efficient. It is particularly well-suited to problems that are closely linked to experimental data, especially those that involve cells with complex anatomical and biophysical properties. Visit ModelDB1 for an archive of published models that are ready to run. In summary, NEURON • is a flexible and powerful simulator of neurons and networks • has important advantages over general-purpose simulators • helps users focus on important biological issues rather than purely computational concerns • has a convenient user interface • has a user-extendable library of biophysical mechanisms • has many enhancements for efficient network modeling • offers customizable initialization and simulation flow control • is widely used in neuroscience research by experimentalists and theoreticians • is well-documented and actively supported • is free, open source, and runs on (almost) everything A flexible and powerful simulator of neurons and networks. Overview of NEURON NEURON was initially designed to facilitate dealing with neuronal models in which complex membrane properties and extended geometry play important roles. Subsequently its domain of applicability has been increased by adding facilities for describing longitudinal ionic diffusion and computationally efficient representation of connections in a network. The fundamental principles behind the design and implementation of NEURON are detailed in the NEURON book2, but it is useful to summarize them briefly here. NEURON is formulated around the notion of continuous cable sections which can be connected together to form any kind of branched cable. A section can be assigned properties that vary continuously with position along its length. The aim is to completely separate the physical properties of the neuron from the numerical issue of size of spatial compartments, and thus to help the investigator focus on the biology rather than computational details. User-defined biophysical properties of membrane (e.g. ion channels, pumps) and cytoplasm (e.g. buffers and second messengers) are described in terms of differential equations, kinetic schemes, and sets of simultaneous equations. These model descriptions are 1http://senselab.med.yale.edu/senselab/modeldb/ 2The NEURON Book, Nicholas T. Carnevale, Michael L. Hines, Cambridge University Press, 2006 1 compiled, so that membrane voltage and gating states can be computed efficiently using an implicit integration method optimized for branched structures. NEURON derives its flexibility and convenience from two features. The first is a graphical interface (GUI) that can be used to create models, run initial exploratory simulations, set parameters, control common voltage and current stimuli, and graph variables as functions of time and position. The second is an object-oriented interpreter that provides a complete programming language which is useful for customization of the GUI, advanced data analysis, and optimization. Thus NEURON puts a great deal of computational power at the disposal of the user, especially for the study of models that have a close relationship to experimental data. Yet this facility as a vehicle for implementing empirically-based models immediately raises a new set of problems that are related to managing anatomical and biophysical complexity so as to achieve computational efficiency and accuracy while at the same time minimizing the effort required of the user. Cell Builder The CellBuilder is one of NEURONs latest enhancements. It is a very powerful and convenient graphical tool for constructing and managing models of individual neurons. The CellBuilder is actually a graphical code generator. In other words, you can use the CellBuilder to enter the specifications for your model cell without having to write any (hoc) code yourself. When youre satisfied with the specification you have created, the CellBuilder will write the necessary code for you. A snapshot from NEURON { CellBuilder Building a simple Hodgkin-Huxley model 1. From Build, choose Cell Builder. This creates a basic model with just a soma. 2. You will see a radio-button list - About, Topology, Subsets, Geometry, Biophysics. For now we need only concern ourselves with setting the membrane properties of the soma - choose Biophysics. 3. To give the soma Hodgkin-Huxley kinetics (the ability to generate an action potential) click hh from the list on the right. 4. The model is complete! To generate the code that NEURON will use to render the computational model click Continuous Create in the top menu. 5. We may now test the model by driving it with a current. In the main NEURON menu choose Tools -- Point Processes - Managers -- Point Manager From SelectPoint 2 Process choose your gate (IClamp) at the top of the list. Set dur (duration of stimulus) to 100 ms and amp (amplitude of stimulus) to 20 nA. 6. To plot the voltage in the cell return the main NEURON window and choose Graph -- State axis. In the window right click to bring up a context dependent menu and select Plot what? then select soma and then v(0:5) (the voltage at the mid-point of the soma). 7. To run the model return to the main NEURON window and choose Tools -- RunControl and then click Init & Run. 8. By adjusting the plotting scale (using View ...) in the Graph window you will see output. This can be changed by modifying parameters in the PointProcess Manager window. From the NEURON menu choose Tools -- Point Processes - Managers -- Point Manager and use other stimulation protocols from SelectPoint Process (such as synaptic ones: Al- phaSynapse, ExpSyn) to investigate the behaviour of the Hodgkin-Huxley model. Plot other variables of the model such as the Na current (use Plot What? -- soma -- ina(0.5)). Channel Builder The Channel Builder is a GUI tool for creating voltage- and ligand-gated channels whose state transitions are described by kinetic schemes and/or Hodgkin-Huxley-style differential equations. Channel gating can be deterministic or stochastic. Deterministic gating models are based on the (often tacit) assumption of a very large number of channels, each having a very small conductance. This is also called the "continuous system approximation to a large population of channels with discrete states." The result is a simulation in which gating variables, ionic conductances and ionic currents are continuous functions of time. The classical Hodgkin-Huxley model is a typical example of a deterministic gating model. Ionic gates are embedded in the cell membrane and control the passage of ions. Conductance based models are all written in the form of a current-balance nonlinear differential equation: dV C = I + I ; dt ion app where C is the membrane capacitance, V the membrane voltage, Iion represents all ionic mem- brane currents and Iapp represents externally injected current. Ionic currents have the generic form p q Iion = gionm h (Vion - V); 3 where p and q are integers. Here gion is the conductance of the ionic current, m; h are (ac- tivating, inactivating) gating variables, and Vion is the reversal potential. The gating variables are dynamic, and evolve in time according to nonlinear differential equations. The art of ionic current modelling is in finding the best set of gating dynamics! The conductance variables m and h take values between 0 and 1 and approach the asymptotic values m (V), and h (V) with time constants τm(V) and τh(V) respectively. Summarizing, we have that 1 1 dm dh τ (V) = m (V)- m; τ (V) = h (V)- h m dt h dt 1 1 The functions τm(V), τh(V), m (V) and h (V) are obtained from fits with experimental data. 1 1 Adding other ionic currents to NEURON The Hodgkin-Huxley kinetics can be built from scratch (and also modified) from the main NEURON menu using Build, choosing Channel Builder -- Density, and then selecting Properties -- Gate Constructor. Clicking on Properties again one can then choose HH sodium channel or HH potassium channel. The functional forms for the gating variables (such as deined by m and τm, called inf and tau by NEURON) of these channels can be modified by clicking on the Properies radio button (in the Gate Constructor) and highlighting the gate name. 1 An example: The slow T-type calcium current Inclusion of the so-called IT current can result in a burst of spikes. This current is often found in thalamic relay (TC) cells (in the thalamus). It is thought to be involved in relaying sensory information from the brainstem and periphery to the cortex. These cells have at least two modes of operation. • During wakefulness or REM sleep, the cells resting potential is around -63 mV, and a small pulse of injected current does not evoke spikes. If the cell is depolarized to around -53 mV, then the same small pulse of injected current evokes a train of spikes. • During slow wave sleep, the cells resting potential is around -75 mV. In this mode (some- times called burst mode), the same small pulse of injected current initiates a low-threshold Ca spike (via the IT current), which results in a burst of spikes. A movie of intracellular recordings from a thalamic relay cell can be found at the McCormick lab http://www.med.yale.edu/neurobio/mccormick/movies/rly exp.mpg A simple model of this current is given by 3 IT = gTm h(VT - V); with 1 m (V) = ; τ (V) = 0:1 1 + e-(V+72)=3) m 1 h1(V) = ; τ (V) = 7:66 + 0:02868e-0:1054V ; 1 + e2(V+70) h 1 -2 with gT = 0:00013 Scm and VT = 120 mV. Run NEURON and then perform the following tasks 4 1. From Build, choose Channel Builder -- Density.
Recommended publications
  • Some Aspects of Neuromorphology, and the Co-Localization of Glial Related Markers in the Brains of Striped Owl (Asio Clamator) from North East Nigeria
    Niger. J. Physiol. Sci. 35 (June 2020): 109 - 113 www.njps.physiologicalsociety.com Research Article Some Aspects of Neuromorphology, and the Co-localization of Glial Related Markers in the Brains of Striped Owl (Asio clamator) from North East Nigeria Karatu A.La., Olopade, F.Eb., Folarin, O.Rc., Ladagu. A.Dd., *Olopade, J.Od and Kwari, H.Da aDepartment of Veterinary Anatomy, Faculty of Veterinary Medicine, University of Maiduguri, Maiduguri, Nigeria bDepartment of Anatomy, Faculty of Basic Medical Sciences, University of Ibadan, Ibadan, Nigeria cDepartment of Biomedical Laboratory Medical Science, Faculty of Basic Medical Sciences, University of Ibadan, Ibadan, Nigeria dDepartment of Veterinary Anatomy, Faculty of Veterinary Medicine, University of Ibadan, Ibadan, Nigeria Summary: The striped owl (Asio clamator) is unique with its brownish white facial disc and they are found in the north eastern part of Nigeria. Little is known in the literature on the basic neuroanatomy of this species. This study focuses on the histology and glial expression of some brain regions of the striped owl. Five owls were obtained in the wild, and their brains were routinely prepared for Haematoxylin and Eosin, and Cresyl violet staining. Immunostaining was done with anti- Calbindin, anti MBP, anti-GFAP, and anti-Iba-1 antibodies; for the expression of cerebellar Purkinje cells and white matter, cerebral astrocytes and microglia cells respectively. These were qualitatively described. We found that the hippocampal formation of the striped owl, though unique, is very similar to what is seen in mammals. The cerebellar cortex is convoluted, has a single layer of Purkinje cells with profuse dendritic arborization, a distinct external granular cell layer, and a prominent stem of white matter were seen in this study.
    [Show full text]
  • Spiking Neural Networks: Neuron Models, Plasticity, and Graph Applications
    Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2015 Spiking Neural Networks: Neuron Models, Plasticity, and Graph Applications Shaun Donachy Virginia Commonwealth University Follow this and additional works at: https://scholarscompass.vcu.edu/etd Part of the Theory and Algorithms Commons © The Author Downloaded from https://scholarscompass.vcu.edu/etd/3984 This Thesis is brought to you for free and open access by the Graduate School at VCU Scholars Compass. It has been accepted for inclusion in Theses and Dissertations by an authorized administrator of VCU Scholars Compass. For more information, please contact [email protected]. c Shaun Donachy, July 2015 All Rights Reserved. SPIKING NEURAL NETWORKS: NEURON MODELS, PLASTICITY, AND GRAPH APPLICATIONS A Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science at Virginia Commonwealth University. by SHAUN DONACHY B.S. Computer Science, Virginia Commonwealth University, May 2013 Director: Krzysztof J. Cios, Professor and Chair, Department of Computer Science Virginia Commonwealth University Richmond, Virginia July, 2015 TABLE OF CONTENTS Chapter Page Table of Contents :::::::::::::::::::::::::::::::: i List of Figures :::::::::::::::::::::::::::::::::: ii Abstract ::::::::::::::::::::::::::::::::::::: v 1 Introduction ::::::::::::::::::::::::::::::::: 1 2 Models of a Single Neuron ::::::::::::::::::::::::: 3 2.1 McCulloch-Pitts Model . 3 2.2 Hodgkin-Huxley Model . 4 2.3 Integrate and Fire Model . 6 2.4 Izhikevich Model . 8 3 Neural Coding Techniques :::::::::::::::::::::::::: 14 3.1 Input Encoding . 14 3.1.1 Grandmother Cell and Distributed Representations . 14 3.1.2 Rate Coding . 15 3.1.3 Sine Wave Encoding . 15 3.1.4 Spike Density Encoding . 15 3.1.5 Temporal Encoding . 16 3.1.6 Synaptic Propagation Delay Encoding .
    [Show full text]
  • Neuron C Reference Guide Iii • Introduction to the LONWORKS Platform (078-0391-01A)
    Neuron C Provides reference info for writing programs using the Reference Guide Neuron C programming language. 078-0140-01G Echelon, LONWORKS, LONMARK, NodeBuilder, LonTalk, Neuron, 3120, 3150, ShortStack, LonMaker, and the Echelon logo are trademarks of Echelon Corporation that may be registered in the United States and other countries. Other brand and product names are trademarks or registered trademarks of their respective holders. Neuron Chips and other OEM Products were not designed for use in equipment or systems, which involve danger to human health or safety, or a risk of property damage and Echelon assumes no responsibility or liability for use of the Neuron Chips in such applications. Parts manufactured by vendors other than Echelon and referenced in this document have been described for illustrative purposes only, and may not have been tested by Echelon. It is the responsibility of the customer to determine the suitability of these parts for each application. ECHELON MAKES AND YOU RECEIVE NO WARRANTIES OR CONDITIONS, EXPRESS, IMPLIED, STATUTORY OR IN ANY COMMUNICATION WITH YOU, AND ECHELON SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of Echelon Corporation. Printed in the United States of America. Copyright © 2006, 2014 Echelon Corporation. Echelon Corporation www.echelon.com Welcome This manual describes the Neuron® C Version 2.3 programming language. It is a companion piece to the Neuron C Programmer's Guide.
    [Show full text]
  • Introduction to CNS: Anatomical Techniques
    9.14 - Brain Structure and its Origins Spring 2005 Massachusetts Institute of Technology Instructor: Professor Gerald Schneider A sketch of the central nervous system and its origins G. Schneider 2005 Part 1: Introduction MIT 9.14 Class 2 Neuroanatomical techniques Primitive cellular mechanisms present in one-celled organisms and retained in the evolution of neurons • Irritability and conduction • Specializations of membrane for irritability • Movement • Secretion • Parallel channels of information flow; integrative activity • Endogenous activity The need for integrative action in multi cellular organisms • Problems that increase with greater size and complexity of the organism: – How does one end influence the other end? – How does one side coordinate with the other side? – With multiple inputs and multiple outputs, how can conflicts be avoided (often, if not always!)? • Hence, the evolution of interconnections among multiple subsystems of the nervous system. How can such connections be studied? • The methods of neuroanatomy (neuromorphology): Obtaining data for making sense of this “lump of porridge”. • We can make much more sense of it when we use multiple methods to study the same brain. E.g., in addition we can use: – Neurophysiology: electrical stimulation and recording – Neurochemistry; neuropharmacology – Behavioral studies in conjunction with brain studies • In recent years, various imaging methods have also been used, with the advantage of being able to study the brains of humans, cetaceans and other animals without cutting them up. However, these methods are very limited for the study of pathways and connections in the CNS. A look at neuroanatomical methods Sectioning Figure by MIT OCW. Cytoarchitecture: Using dyes to bind selectively in the tissue -- Example of stains for cell bodies Specimen slide removed due to copyright reasons.
    [Show full text]
  • The Neocortex of Cetartiodactyls. II. Neuronal Morphology of the Visual and Motor Cortices in the Giraffe (Giraffa Camelopardalis)
    Brain Struct Funct (2015) 220:2851–2872 DOI 10.1007/s00429-014-0830-9 ORIGINAL ARTICLE The neocortex of cetartiodactyls. II. Neuronal morphology of the visual and motor cortices in the giraffe (Giraffa camelopardalis) Bob Jacobs • Tessa Harland • Deborah Kennedy • Matthew Schall • Bridget Wicinski • Camilla Butti • Patrick R. Hof • Chet C. Sherwood • Paul R. Manger Received: 11 May 2014 / Accepted: 21 June 2014 / Published online: 22 July 2014 Ó Springer-Verlag Berlin Heidelberg 2014 Abstract The present quantitative study extends our of aspiny neurons in giraffes appeared to be similar to investigation of cetartiodactyls by exploring the neuronal that of other eutherian mammals. For cross-species morphology in the giraffe (Giraffa camelopardalis) neo- comparison of neuron morphology, giraffe pyramidal cortex. Here, we investigate giraffe primary visual and neurons were compared to those quantified with the same motor cortices from perfusion-fixed brains of three su- methodology in African elephants and some cetaceans badults stained with a modified rapid Golgi technique. (e.g., bottlenose dolphin, minke whale, humpback whale). Neurons (n = 244) were quantified on a computer-assis- Across species, the giraffe (and cetaceans) exhibited less ted microscopy system. Qualitatively, the giraffe neo- widely bifurcating apical dendrites compared to ele- cortex contained an array of complex spiny neurons that phants. Quantitative dendritic measures revealed that the included both ‘‘typical’’ pyramidal neuron morphology elephant and humpback whale had more extensive den- and ‘‘atypical’’ spiny neurons in terms of morphology drites than giraffes, whereas the minke whale and bot- and/or orientation. In general, the neocortex exhibited a tlenose dolphin had less extensive dendritic arbors.
    [Show full text]
  • Scripting NEURON
    Scripting NEURON Robert A. McDougal Yale School of Medicine 7 August 2018 What is a script? A script is a file with computer-readable instructions for performing a task. In NEURON, scripts can: set-up a model, define and perform an experimental protocol, record data, . Why write scripts for NEURON? Automation ensures consistency and reduces manual effort. Facilitates comparing the suitability of different models. Facilitates repeated experiments on the same model with different parameters (e.g. drug dosages). Facilitates recollecting data after change in experimental protocol. Provides a complete, reproducible version of the experimental protocol. Programmer's Reference neuron.yale.edu Use the \Switch to HOC" link in the upper-right corner of every page if you need documentation for HOC, NEURON's original programming language. HOC may be used in combination with Python: use h.load file to load a HOC library; the functions and classes are then available with an h. prefix. Introduction to Python Displaying results The print command is used to display non-graphical results. It can display fixed text: print ('Hello everyone.') Hello everyone. or the results of a calculation: print (5 * (3 + 2)) 25 Storing results Give values a name to be able to use them later. a = max([1.2, 5.2, 1.7, 3.6]) print (a) 5.2 In Python 2.x, print is a keyword and the parentheses are unnecessary. Using the parentheses allows your code to work with both Python 2.x and 3.x. Don't repeat yourself Lists and for loops To do the same thing to several items, put the items in a list and use a for loop: numbers = [1, 3, 5, 7, 9] for number in numbers: print (number * number) 1 9 25 49 81 Items can be accessed directly using the [] notation; e.g.
    [Show full text]
  • NEST by Example: an Introduction to the Neural Simulation Tool NEST Version 2.6.0
    NEST by Example: An Introduction to the Neural Simulation Tool NEST Version 2.6.0 Marc-Oliver Gewaltig1, Abigail Morrison2, and Hans Ekkehard Plesser3, 2 1Blue Brain Project, Ecole Polytechnique Federale de Lausanne, QI-J, Lausanne 1015, Switzerland 2Institute of Neuroscience and Medicine (INM-6) Functional Neural Circuits Group, J¨ulich Research Center, 52425 J¨ulich, Germany 3Dept of Mathematical Sciences and Technology, Norwegian University of Life Sciences, PO Box 5003, 1432 Aas, Norway Abstract The neural simulation tool NEST can simulate small to very large networks of point-neurons or neurons with a few compartments. In this chapter, we show by example how models are programmed and simulated in NEST. This document is based on a preprint version of Gewaltig et al. (2012) and has been updated for NEST 2.6 (r11744). Updated to 2.6.0 Hans E. Plesser, December 2014 Updated to 2.4.0 Hans E. Plesser, June 2014 Updated to 2.2.2 Hans E. Plesser & Marc-Oliver Gewaltig, December 2012 1 Introduction NEST is a simulator for networks of point neurons, that is, neuron models that collapse the morphol- ogy (geometry) of dendrites, axons, and somata into either a single compartment or a small number of compartments (Gewaltig and Diesmann, 2007). This simplification is useful for questions about the dynamics of large neuronal networks with complex connectivity. In this text, we give a practical intro- duction to neural simulations with NEST. We describe how network models are defined and simulated, how simulations can be run in parallel, using multiple cores or computer clusters, and how parts of a model can be randomized.
    [Show full text]
  • NEURON and Python
    ORIGINAL RESEARCH ARTICLE published: 28 January 2009 NEUROINFORMATICS doi: 10.3389/neuro.11.001.2009 NEURON and Python Michael L. Hines1, Andrew P. Davison2* and Eilif Muller3 1 Computer Science, Yale University, New Haven, CT, USA 2 Unité de Neurosciences Intégratives et Computationelles, CNRS, Gif sur Yvette, France 3 Laboratory for Computational Neuroscience, Ecole Polytechnique Fédérale de Lausanne, Switzerland Edited by: The NEURON simulation program now allows Python to be used, alone or in combination with Rolf Kötter, Radboud University, NEURON’s traditional Hoc interpreter. Adding Python to NEURON has the immediate benefi t Nijmegen, The Netherlands of making available a very extensive suite of analysis tools written for engineering and science. Reviewed by: Felix Schürmann, Ecole Polytechnique It also catalyzes NEURON software development by offering users a modern programming Fédérale de Lausanne, Switzerland tool that is recognized for its fl exibility and power to create and maintain complex programs. At Volker Steuber, University of the same time, nothing is lost because all existing models written in Hoc, including graphical Hertfordshire, UK user interface tools, continue to work without change and are also available within the Python Arnd Roth, University College London, UK context. An example of the benefi ts of Python availability is the use of the xml module in *Correspondence: implementing NEURON’s Import3D and CellBuild tools to read MorphML and NeuroML model Andrew Davison, UNIC, Bât. 32/33, specifi cations. CNRS, 1 Avenue de la Terrasse, 91198 Keywords: Python, simulation environment, computational neuroscience Gif sur Yvette, France. e-mail: [email protected] INTRODUCTION for the purely numerical issue of how many compartments are The NEURON simulation environment has become widely used used to represent each of the cable sections.
    [Show full text]
  • NEURAL CONNECTIONS: Some You Use, Some You Lose
    NEURAL CONNECTIONS: Some You Use, Some You Lose by JOHN T. BRUER SOURCE: Phi Delta Kappan 81 no4 264-77 D 1999 . The magazine publisher is the copyright holder of this article and it is reproduced with permission. Further reproduction of this article in violation of the copyright is prohibited JOHN T. BRUER is president of the James S. McDonnell Foundation, St. Louis. This article is adapted from his new book, The Myth of the First Three Years (Free Press, 1999), and is reprinted by arrangement with The Free Press, a division of Simon Schuster Inc. ©1999, John T. Bruer . OVER 20 YEARS AGO, neuroscientists discovered that humans and other animals experience a rapid increase in brain connectivity -- an exuberant burst of synapse formation -- early in development. They have studied this process most carefully in the brain's outer layer, or cortex, which is essentially our gray matter. In these studies, neuroscientists have documented that over our life spans the number of synapses per unit area or unit volume of cortical tissue changes, as does the number of synapses per neuron. Neuroscientists refer to the number of synapses per unit of cortical tissue as the brain's synaptic density. Over our lifetimes, our brain's synaptic density changes in an interesting, patterned way. This pattern of synaptic change and what it might mean is the first neurobiological strand of the Myth of the First Three Years. (The second strand of the Myth deals with the notion of critical periods, and the third takes up the matter of enriched, or complex, environments.) Popular discussions of the new brain science trade heavily on what happens to synapses during infancy and childhood.
    [Show full text]
  • Impaired Axonal Regeneration in Α7 Integrin-Deficient Mice
    The Journal of Neuroscience, March 1, 2000, 20(5):1822–1830 Impaired Axonal Regeneration in ␣7 Integrin-Deficient Mice Alexander Werner,1 Michael Willem,2 Leonard L. Jones,1 Georg W. Kreutzberg,1 Ulrike Mayer,2 and Gennadij Raivich1 1Department of Neuromorphology, Max-Planck-Institute of Neurobiology, and 2Department of Protein Chemistry, Max- Planck-Institute of Biochemistry, 82152 Martinsried, Germany The interplay between growing axons and the extracellular the regenerating facial nerve. Transgenic deletion of the ␣7 substrate is pivotal for directing axonal outgrowth during de- subunit caused a significant reduction of axonal elongation. velopment and regeneration. Here we show an important role The associated delay in the reinnervation of the whiskerpad, a for the neuronal cell adhesion molecule ␣7␤1 integrin during peripheral target of the facial motor neurons, points to an peripheral nerve regeneration. Axotomy led to a strong increase important role for this integrin in the successful execution of of this integrin on regenerating motor and sensory neurons, but axonal regeneration. not on the normally nonregenerating CNS neurons. ␣7 and ␤1 Key words: axonal regeneration; reinnervation; facial nerve; subunits were present on the axons and their growth cones in growth cone; motoneuron; integrin; knock-out mice Changes in adhesion properties of transected axons and their Flier et al., 1995; Kil and Bronner-Fraser, 1996; Velling et al., environment are essential for regeneration. In the proximal part, 1996). In the adult nervous system, we now show that ␣7is the tips of the transected axons transform into growth cones that strongly upregulated in axotomized neurons in various injury home onto the distal part of the nerve and enter the endoneurial models during peripheral nerve regeneration, but not after CNS tubes on their way toward the denervated tissue (Fawcett, 1992; injury.
    [Show full text]
  • The Action Potential
    See discussions, stats, and author profiles for this publication at: http://www.researchgate.net/publication/6316219 The action potential ARTICLE in PRACTICAL NEUROLOGY · JULY 2007 Source: PubMed CITATIONS READS 16 64 2 AUTHORS, INCLUDING: Mark W Barnett The University of Edinburgh 21 PUBLICATIONS 661 CITATIONS SEE PROFILE Available from: Mark W Barnett Retrieved on: 24 October 2015 192 Practical Neurology HOW TO UNDERSTAND IT Pract Neurol 2007; 7: 192–197 The action potential Mark W Barnett, Philip M Larkman t is over 60 years since Hodgkin and called ion channels that form the permeation Huxley1 made the first direct recording of pathways across the neuronal membrane. the electrical changes across the neuro- Although the first electrophysiological nal membrane that mediate the action recordings from individual ion channels were I 2 potential. Using an electrode placed inside a not made until the mid 1970s, Hodgkin and squid giant axon they were able to measure a Huxley predicted many of the properties now transmembrane potential of around 260 mV known to be key components of their inside relative to outside, under resting function: ion selectivity, the electrical basis conditions (this is called the resting mem- of voltage-sensitivity and, importantly, a brane potential). The action potential is a mechanism for quickly closing down the transient (,1 millisecond) reversal in the permeability pathways to ensure that the polarity of this transmembrane potential action potential only moves along the axon in which then moves from its point
    [Show full text]
  • Comparative Morphology of Gigantopyramidal Neurons in Primary Motor Cortex Across Mammals
    Received: 23 August 2017 | Revised: 19 October 2017 | Accepted: 24 October 2017 DOI: 10.1002/cne.24349 The Journal of RESEARCH ARTICLE Comparative Neurology Comparative morphology of gigantopyramidal neurons in primary motor cortex across mammals Bob Jacobs1 | Madeleine E. Garcia1 | Noah B. Shea-Shumsky1 | Mackenzie E. Tennison1 | Matthew Schall1 | Mark S. Saviano1 | Tia A. Tummino1 | Anthony J. Bull2 | Lori L. Driscoll1 | Mary Ann Raghanti3 | Albert H. Lewandowski4 | Bridget Wicinski5 | Hong Ki Chui1 | Mads F. Bertelsen6 | Timothy Walsh7 | Adhil Bhagwandin8 | Muhammad A. Spocter8,9,10 | Patrick R. Hof5 | Chet C. Sherwood11 | Paul R. Manger8 1Laboratory of Quantitative Neuromorphology, Neuroscience Program, Colorado College, Colorado Springs, Colorado 2Human Biology and Kinesiology, Colorado College, Colorado Springs, Colorado 3Department of Anthropology and School of Biomedical Sciences, Kent State University, Kent, Ohio 4Cleveland Metroparks Zoo, Cleveland, Ohio 5Fishberg Department of Neuroscience and Friedman Brain Institute, Icahn School of Medicine at Mount Sinai, New York, New York 6Center for Zoo and Wild Animal Health, Copenhagen Zoo, Fredericksberg, Denmark 7Smithsonian National Zoological Park, Washington, District of Columbia 8School of Anatomical Sciences, Faculty of Health Sciences, University of the Witwatersrand, Johannesburg, South Africa 9Department of Anatomy, Des Moines University, Des Moines, Iowa 10Biomedical Sciences, College of Veterinary Medicine, Iowa State University, Ames, Iowa 11Department of Anthropology and Center for the Advanced Study of Human Paleobiology, The George Washington University, Washington, District of Columbia Correspondence Bob Jacobs, Ph.D., Laboratory of Abstract Quantitative Neuromorphology, Gigantopyramidal neurons, referred to as Betz cells in primates, are characterized by large somata Neuroscience Program, Colorado College, and extensive basilar dendrites. Although there have been morphological descriptions and draw- 14 E.
    [Show full text]