.. _tutorial_lfpykit: Extracellular signals (LFPykit) =============================== This example takes elements from other tutorials to create a geometrically detailed single-cell model from an SWC morphology file and adds predictions of extracellular potentials using the `LFPykit `_ Python library. LFPykit provides a few different classes facilitating calculations of extracellular potentials and related electroencephalography (EEG) and magnetoencephalography (MEG) signals from geometrically detailed neuron models under various assumptions. These are signals that mainly stem from transmembrane currents. .. Note:: **Concepts covered in this tutorial:** 1. Recording of transmembrane currents using :class:`arbor.cable_probe_total_current_cell`. 2. Recording of stimulus currents using :class:`arbor.cable_probe_stimulus_current_cell`. 3. Using the :class:`arbor.place_pwlin` API. 4. Map recorded transmembrane currents to extracellular potentials by deriving Arbor-specific classes from LFPykit's :class:`lfpykit.LineSourcePotential` and :class:`lfpykit.CellGeometry`. .. _tutorial_lfpykit-linesource: The line source approximation ----------------------------- First, let's describe how one can compute extracellular potentials from transmembrane currents of a number of segments, assuming that each segment can be treated as an equivalent line current source using a formalism invented by Gary R. Holt and Christof Koch [1]_. The implementation used in this tutorial rely on :class:`lfpykit.LineSourcePotential`. This class conveniently defines a 2D linear response matrix :math:`\mathbf{M}` between transmembrane current array :math:`\mathbf{I}` (nA) of a neuron model's geometry (:class:`lfpykit.CellGeometry`) and the corresponding extracellular electric potential in different extracellular locations :math:`\mathbf{V}_{e}` (mV), so .. math:: \mathbf{V}_{e} = \mathbf{M} \mathbf{I}. The transmembrane current :math:`\mathbf{I}` is an array of shape (# segments, # timesteps) with unit (nA), and each row indexed by :math:`j` of :math:`\mathbf{V}_{e}` represents the electric potential at each measurement site for every time step. The resulting shape of :math:`\mathbf{V}_{e}` is (# locations, # timesteps). The elements of :math:`\mathbf{M}` are computed as: .. math:: M_{ji} = \frac{1}{ 4 \pi \sigma L_i } \log \left| \frac{\sqrt{h_{ji}^2+r_{ji}^2}-h_{ji} }{ \sqrt{l_{ji}^2+r_{ji}^2}-l_{ji}} \right|~. Here, segments are indexed by :math:`i`, segment length is denoted :math:`L_i`, perpendicular distance from the electrode point contact to the axis of the line segment is denoted :math:`r_{ji}`, longitudinal distance measured from the start of the segment is denoted :math:`h_{ji}` and longitudinal distance from the other end of the segment is denoted :math:`l_{ji}= L_i + h_{ji}`. .. admonition:: Assumptions 1. The extracellular conductivity :math:`\sigma` is infinite, homogeneous, frequency independent (linear) and isotropic. 2. Each segment is treated as a straight line source with homogeneous current density between its start and end point coordinates. Although Arbor allows segments to be defined as conical frusta with varying radius, we shall assume that any variation in radius is small relative to overall segment length. 3. Each extracellular measurement site is treated as a point. 4. The minimum distance to a line source is set equal to the average segment radius to avoid singularities. .. _tutorial_lfpykit-model: The model --------- In this tutorial, the neuron model itself is kept deliberately simple with only passive (leaky) membrane dynamics, and it receives sinusoid synaptic current input in one arbitrarily chosen control volume (CV). First, we import some required modules: .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 15-18 We define a basic :class:`Recipe ` class, holding a cell and three probes (voltage, stimulus current, and total current): .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 24-51 Then, load a morphology on ``SWC`` file format (interpreted according to :ref:`Arbor's specifications `). Similar to the tutorial :ref:`"A simple single cell model" `, we use the morphology file in ``python/example/single_cell_detailed.swc``: .. figure:: ../gen-images/tutorial_morph_nolabels_nocolors.svg :width: 800 :align: left A graphic depiction of ``single_cell_detailed.swc``. Read the morphology from a file or use the default .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 54-65 As a target for a current stimulus we define .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 67-68 Next, we define our cell model, based on the morphology and clamp location. We set various attributes (:class:`~arbor.label_dict`, :class:`~arbor.decor`) for the cell model, attaches a sinusoid current using :class:`~arbor.i_clamp`, and sets discretization policy ats :class:`~arbor.cv_policy_fixed_per_branch`. .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 70-94 Next, we instantiate :class:`Recipe`, configure the sampling, and execute the model for a few hundred ms: .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 99-114 Extract recorded membrane voltages, electrode, and transmembrane currents. Note that membrane voltages at branch points and intersections between CVs are dropped as we only illustrate membrane voltages of segments with finite lengths. .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 116-135 Finally we sum the stimulation and transmembrane currents, allowing the stimuli to mimic a synapse current embedded in the membrane itself rather than an intracellular electrode current: .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 137-139 .. _tutorial_lfpykit-lfpykit: Compute extracellular potentials -------------------------------- Here we utilize the LFPykit library to map trans-membrane currents recorded during the simulation to extracellular potentials in the vicinity of the cell. We shall account for every segment in each CV using the so-called line-source approximation described :ref:`above `. First, we define a couple of inherited classes to interface with LFPykit, as this library is not solely written for Arbor. Starting with a class inherited from :class:`lfpykit.CellGeometry`: .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 145-180 Then, a class is inherited from :class:`lfpykit.LineSourcePotential`. Other use cases may inherit from any other parent class defined in :mod:`lfpykit.models` in a similar manner: .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 183-231 With these two classes, one may then compute extracellular potentials from transmembrane currents in space with a few lines of code: .. literalinclude:: ../../python/example/probe_lfpykit.py :language: python :lines: 234-256 .. _tutorial_lfpykit-illustration: The result ---------- The visualization below of simulation results shows the cellular geometry and a contour plot of the extracellular potential (``V_e``) in a plane. Each part (CV) of the cell is shown with some color coding for the membrane potential (``V_m``). The stimulus location is denoted by the black marker. .. figure:: probe_lfpykit.svg :width: 1600 :align: center The result. .. Note:: The spatial discretization is here deliberately coarse with only 3 CVs per branch. Hence, the branch receiving input about 1/6 of the way from its root (from ``decor.place(str(arbor.location(4, 1/6)), i_clamp)``) is treated as 3 separate line sources with inhomogeneous current density per unit length. This inhomogeneity is due to the fact that the total transmembrane current per CV may be distributed across multiple segments with varying surface areas. The transmembrane current is assumed to be constant per unit length per segment. .. _tutorial_lfpykit-code: The full code ------------- You can find the full code of the example at ``python/examples/probe_lfpykit.py``. Find the source of LFPykit `here `_. References ---------- .. [1] Holt, G.R., Koch, C. Electrical Interactions via the Extracellular Potential Near Cell Bodies. J Comput Neurosci 6, 169–184 (1999). https://doi.org/10.1023/A:1008832702585