HOWTO on Hsolvable Gap Junctions in Genesis

01/05/2006
Carson B Roberts
University of Texas at San Antonio
carson_roberts@yahoo.com


Overview of This Document:

This HOWTO is intended for users of the Genesis modeling system, to show how to couple two or more cells via electrical synapses or "Gap Junctions", when the model cells have been taken over by the Genesis Hsolver. For models not using hsolve, there are probably easier ways to implement gap junctions.

This HOWTO may also serve as an introduction to the creation and use of Genesis "Extended Objects", since this is the method used here to implement the gap junctions. For a different type of coupling, or for models not using hsolve, the basic structure used here could be copied, with just the commands inside the main function changed.

In addition, this HOWTO discusses potential instabilities that may arise with models having gap junctions, where they come from, and how to deal with them. For some theory on Gap Junctions, and the implications for finite time-step modeling, see An Explanation of some properites of Gap Junctions, further down in this document.


Outline:


Important Genesis Commands for Use With Hsolved Model Cells:

Once a model cell has been taken over by the hsolver, reading and writing to cell compartments is not a simple manner. The three key commands to use to read and write to hsolved compartments are:

1.) findsolvefield: This command will return an address from the "chip array", not an actual value. It seems general practice to read this chip address into a string called "hstr". For example, in the models used to develop the Gap Junction codes, to find the soma membrane voltage, one can use the command:

genesis #0 > hstr = {findsolvefield {cellpath} {cellpath}/soma Vm}
This will read the address into the string, but the actual value of "hstr" will be kind of meaningless:
genesis #2 > echo {hstr}

vm[447]
The actual value of the membrane potential can, however, be extracted with the second important command, getfield:

2.) getfield: This command will extract the actual value from the chip array address found by the findsolvefield command. With the example above, the actual value of the membrane potential can be found with the following two commands:

genesis #4 > float Vm_Test ={getfield {cellpath} {hstr}}

genesis #5 > echo {Vm_Test}

-0.04801133517

The findsolvefield and getfield commands are used to extract information from the hsolve object. In practice, though, one will want to extract these data, and then use them to calculate some quantity to be applied back to the model cell(s). This is accomplished with the setfield command.

3.) setfield: This command can be used to set the value of one of the fields of a part of an hsolved object. For this example, let us assume that some set of values, read in as above above, have been used to calculate the current that would flow due to some model conductance. Further, (for this example), assume that the compartment we want to inject this calculated curent into is called "Comp_1".

The first thing to do is to find what the address of the "inject" field of this compartment is:

genesis #6 > hstr = {findsolvefield {cellpath} {cellpath}/{Comp_1} inject}

genesis #7 > echo {hstr}

chip[2663]
Again, the actual value of the hstr is irrelevant.

To set the value of the injected current to "Comp_1" to 0.1 nA, we can use the commands:

genesis #8 > float I_inj = 0.1e-9

genesis #9 > setfield {cellpath} {hstr} {I_inj}

OK

With these three commands, findsolvefield, getfield, and setfield, one can, in principle, implement any type of conductance on or between one or more hsolved objects. In order to implement the "Gap Junction" electrical synapse, they can be all put into an "extended object" that can be called in a run script, and potentially implemented multiple times with multiple different properites.

Back To Top


Detailed Instructions for Creating a Prototype Gap Junction Extended Object

The rest of this HOWTO will concentrate on a particular implementation of an hsolvable gap junction extended object.

This particular extended object has five "fields" one "action" and one "process".

For the complete implementation, see the GapJ.g script. In the next few paragraphs, I'll try to go through that script to explain what its parts do.

For an example of how to put copies of the Gap Junction object into a simulation, see the Gap_Junction_setup.g script, and the Run Script Calls.

The fields in the Gap Junction extended object are the maximum conductance, the names of the two hsolve objects that contain the two coupled cells, and the compartment names of the pre- and post-synaptic compartments (which should be in different cells). After the GapJ object is created with the

 create neutral /GapJ
command, the fields are defined with addfield commands, such as:
 addfield /GapJ Gbar    // The Conductance of the Gap Junction

Next, the extended object needs to have an action and a class set up. I'm not sure what these do, but the lines:

addaction /GapJ PROCESS GapJPROCESS
addclass /GapJ device
work to do the setup.

The process looks just like any other Genesis function, and indeed is set up with the line:

function GapJPROCESS(action)

The next bit is a little tricky, since even though the fields are defined in the prototype script, and set in the setup script, they are not directly available for use inside the process function. For example, in order to get and set fields in the two cells, new local variables must be defined inside the function:

str Cell_1 = {getfield . Cell_1}
This line writes the string found in the local field "Cell_1" (that's what the "." means) into the local variable of the same name. Similar lines can be used to copy all the local fields into local variables.

Now that the function knows the names and values of all the relevant quantities, a series of findsolvefield, getfield, and setfield commands can be used to calculate the current that will flow in each time step.

As described above, the two commands:

hstr ={findsolvefield {Cell_1} {Cell_1}/{Comp_1} Vm}  
           float V1 = {getfield {Cell_1} {hstr}}
will copy the value of the membrane potential in "Comp_1" of "Cell_1" into the local variable "V1". The voltage of the other compartment in the other cell is found with a similar pair of commands.

In actual cells, some gap junctions are "rectifying", meaning that their conductance will depend on the potential difference across the gap. This can be implemented by defining another local variable "r", with some pre-defined dependance on the two voltages. For a simple, non-rectifying gap junction, either eliminate the variable r, or set it to 1.

Next, the current that will flow in the next time step is calculated, following Ohm's law:

float I = {Gbar}*{r}*{{V2}-{V1}}
The currents are then injected into the appropriate compartments with paired findsolvefield and setfield commands:
hstr ={findsolvefield {Cell_1} {Cell_1}/{Comp_1} inject}  
            setfield {Cell_1} {hstr} {I}
NOTE: The currents injected into the two compartments should have opposite signs.

That's it for the actual calculations; to finish setting up the process function, the lines:

return 1
 end // of function GapJPROCESS
  // create the GapJ object
addobject GapJ GapJ -author "Carson B Roberts" \
   -description "hsolvable electrical synapse"
resched
are necessary. The last command, "resched" is called in order to reread the simulation schedule and schedule the listed element types for simulation. This is necessary bookkeeping for the extended object to be properly included in the simulation.

With the process defined, it remains to create the prototype Gap Junction extended object in the library. A short function:

function create_Gap_Junction
   ce /library
     if (!{exists Gap_Junction})
        create GapJ Gap_Junction
     end // of ifloop for creating GapJ.
end // of function create_Gap_Junction
will create in the library a prototype "GapJ" object, named "Gap_Junction", if it has not already been done.

From this point on, the Gap Junction object can be treated like any other Genesis object, such as a synchan or a spikegen. Multiple copies of the prototype object can be made, and their properties set with setfield commands. An example of how this can be implemented can be found below, in the Gap_Junction_setup.g script. The basic set of commands to setup a functional copy of the prototype Gap Junction object is:

str GapJPath2 = "/inputs/GapJ2"
copy /library/Gap_Junction {GapJPath2}
setfield {GapJPath2} Cell_1 {cellpath}
setfield {GapJPath2} Cell_2 {cellpath2}
str GapJ2_compt1 = "p1[1]"
str GapJ2_compt2 = "p1[1]"
setfield {GapJPath2} Comp_1 {GapJ2_compt1}
setfield {GapJPath2} Comp_2 {GapJ2_compt2}
setfield {GapJPath2} Gbar {G_Gap}
This block of code will create a Gap Junction object, named "GapJ2" in the "/inputs/" element of the Genesis tree, connecting the "p1[1]" compartments of the two hsolved cells with a conductance of "G_Gap" (defined elswhere).

This should be enough information to allow one to set up gap junctions between hsolved cells. One thing to be very careful of, though, is the relationship between the gap junction conductance and the integration timestep of the simulation. The reasons for this are outlined below, along with some suggestions for appropriate values.

----Good Luck!!!!

Carson B Roberts
University of Texas at San Antonio
carson_roberts@yahoo.com

Back To Top


An Explanation of Some Properties of Gap Junctions

One main difference between an electrical synapse or "Gap Junction" and a chemical synapse is that in the chemical synapse, the signal propagates from the pre-synaptic cell to the post-synaptic cell by a series of processes, each of which takes a finite amount of time. When the action potential reaches the end of the pre-synaptic axon, first it triggers release of neurotransmitter chemicals from vesicles, then the neurotransmitter molecules must diffuse across the synaptic cleft to receptors on the post-synaptic cell.

When the neurotransmitter molecules reach the post-synaptic cell, they must bind to ligand-gated ion channel molecules, and cause them to undergo some morphological transformation to allow ions to flow across the membrane. In general, after being activated, the receptor will inactivate (close) with some characteristic time constant.

In modeling, these various processes are often simulated with a "rise time" and a "fall time", as in the Genesis synchan object, with its "tau1" and "tau2" fields. For most simulations, these time constants will be on the order of 10-4 seconds or greater. Thus, these processes will be slow compared to an integration timestep of 10-5 seconds.

In contrast, the Gap junction channel is always open, and thus a current will begin to flow across it as soon as there is any non-zero potential difference between the two cells. This is the equivalent of a synchan object with a tau1 of zero.

One possible result of this is related to the fact that, at each time step, the current is calculated and sent across the gap junction. Of course, the values are never exactly right, and so some will be a little high, and some a little low. This should be made up in the next time step.

However, the larger the time step, the larger the amount of charge transferred, which is equal to the calculated current times the timestep. A larger change in charge means a larger change in voltage (Voltage is Charge divided by Capacitance).

This argument holds for the calculation errors in the Voltage as well, and if this incorrect current is held on for too long, then the resultant voltage errors will be larger, in inverse proportion to the size of the timestep.

However, If the size of the timestep is decreased as the gap junction conductance is increased, one can avoid the instability.

In the models in which this Gap Junction object was developed, I started with a timestep of 10-5 seconds, which worked just fine for conductances of 50 nS or less. If I decreased the timestep to 10-8 seconds, then I could get stable activity with a gap junction conductance of 50,000 nS, well above the biophysically reasonable range.

Back To Top


Genesis Script to Create a Prototype Gap Junction Object:

// genesis 2.3 Script

/***********************************************************************
 ** GapJ:  Primitive Object to define an electrical synapse, or "Gap 
 ** Junction" between two cells.  This code is meant to be used with
 ** two or more cells that have been set up with the Genesis Hines 
 ** Solver, in hsolve chanmode 3 or higher.  The following code assumes
 ** that the two connected cells have been set up as hsolve objects.  
 ** The actual names of the cells and the pre- and post-synaptic 
 ** compartments are fields in the object that can be set after it is
 ** created.
 **
 ** Written 12/2006 by Carson B. Roberts (carson_roberts@yahoo.com)
 ** based on code for rectifying electrical synapses by 
 ** Mariano Rodriguez (rodrigue74@yahoo.com)
 ************************************************************************/

ce /
  /**********************************************************************
   ** The following code will not work unless exectuted in the root of
   ** the element paths.
   **********************************************************************/
create neutral /GapJ

addfield /GapJ Gbar    // The Conductance of the Gap Junction
addfield /GapJ Cell_1  // The name of the first cell hsolve object
addfield /GapJ Cell_2  // The name of the second cell hsolve object
addfield /GapJ Comp_1  // The name of the pre-synaptic compartment (in Cell_1)
addfield /GapJ Comp_2  // The name of the post-synaptic compartment (in Cell_2)
  /********************************************************************* 
   **   Create fields for the Gap Junction object to be set in each 
   ** individual instance of this object.
   **********************************************************************/

addaction /GapJ PROCESS GapJPROCESS
addclass /GapJ device
  /*************************************************************************
   ** Required code to set up the Gap Junction Object 
   *************************************************************************/

  /*************************************************************************
   ** PROCESS action definition:  The following block of code  is where to 
   ** modify the properties of the gap junction
   **************************************************************************/
function GapJPROCESS(action)

    str Cell_1 = {getfield . Cell_1}
    str Cell_2 = {getfield . Cell_2}
    str Comp_1 = {getfield . Comp_1}
    str Comp_2 = {getfield . Comp_2}
    float Gbar = {getfield . Gbar}
            /***************************************************************
             ** First, copy the fields naming the two hsolve objects and the
             ** Pre- and Post-Synaptic compartments and the conductance 
             ** into local variables, to make later commands more simple.
             ***************************************************************/
    hstr ={findsolvefield {Cell_1} {Cell_1}/{Comp_1} Vm}  
           float V1 = {getfield {Cell_1} {hstr}}
             /********************************************************* 
              ** Ask the Hines Solver what the Pre-synaptic Compartment 
              ** membrane potential is and write it to the local 
              ** variable "V1" for use in calculating Gap Current.
              *********************************************************/
    hstr ={findsolvefield {Cell_2} {Cell_2}/{Comp_2} Vm}            
            float V2 = {getfield {Cell_2} {hstr}}
             /********************************************************* 
              ** Ask the Hines Solver what the Post-synaptic Compartment 
              ** membrane potential is and write it to the local 
              ** variable "V2" for use in calculating Gap Current.
              *********************************************************/
    float r = 1
             /*************************************************************
              ** A variable to represent the "rectification" property of an
              ** electrical synapse.  For a non-rectifying synapse, leave
              ** "r = 1".  For rectification, define r as a function of
              ** the compartment membrane potentials {V1} and {V2}
              ** Example: 
              **           float r = 1/{1+{exp{100*{{V1}-{V2}}}}}
              *************************************************************/
    float I = {Gbar}*{r}*{{V2}-{V1}}
             /*************************************************************
              ** Calculate the Gap Junction Current as the product of the 
              ** local variable "{Gbar}" and the difference in membrane 
              ** potential between the two compartments.
              *************************************************************/
    hstr ={findsolvefield {Cell_1} {Cell_1}/{Comp_1} inject}  
            setfield {Cell_1} {hstr} {I}
	      /***************************************************************
               ** Tell the Hines Solver to update the "inject" 
               ** (injected current) value for the Pre-Synaptic compartment.
               ***************************************************************/
    hstr ={findsolvefield {Cell_2} {Cell_2}/{Comp_2} inject}  
            setfield {Cell_2} {hstr} {-1*{I}}
              /***************************************************************
               ** Tell the Hines Solver to update the "inject" 
               ** (injected current) value for the Post-Synaptic compartment
               ** This should be the negative of the Pre-Synaptic current.
               ***************************************************************/
    return 1
	    // No idea what this does, but it seems necessary.
  end // of function GapJPROCESS

  // create the GapJ object
addobject GapJ GapJ -author "Carson B Roberts" \
   -description "hsolvable electrical synapse"
resched
   /*********************************************************************
    ** "run resched so that the new object will be made known to the 
    ** simulator... resched is called in order to reread the simulation 
    ** schedule and schedule the listed element types for simulation."
    ** (From Genesis Command Reference for "resched" command)
    *********************************************************************/

/**************************************************************************
 ** Now, the basic Extended Object has been set up, and can be created and
 ** set up, and multiple copies made for later use.  The actual creation of
 ** the object to be used is done in the following block of code, which 
 ** should be called in the main run script, after the Hines Solvers have
 ** been set up, and after this file (GapJ.g) has been included.
 **************************************************************************/

function create_Gap_Junction
   ce /library
      /**************************************************************** 
       ** This function should be called in "/library", and then the
       ** prototype object created in the library can be copied 
       ** multiple times to be used in various places.  
       ****************************************************************/
   if (!{exists Gap_Junction})
        create GapJ Gap_Junction
         /****************************************************************
          ** This sets up a specific instance of the Gap Junction object
          ****************************************************************/
   end // of ifloop for creating GapJ.

end // of function create_Gap_Junction

Back To Top


Genesis Script to Implement Gap Junction Objects in a Simulation:

//genesis 2.3 Script

/********************************************************************
 ** Gap_Junction_setup.g:  This creates an electrical  synapse 
 ** between cells 1 and 2, based on an initial Gap Junction created 
 ** in the library.
 ** Include this script in the main run script after setting up the 
 ** Hines Solvers for the two cells to be coupled.  
 **
 ** This script assumes that the prototype Gap Junction object has
 ** been set up in the run script with the calls:
 **                      include GapJ.g
 ** and
 **                     create_Gap_Junction
 **
 ** See the documentation in "GapJ.g" for details.
 **
 ** This code has been tested to work with hsolve "chanmode 4".  
 ** It should work with any hsolve mode that requires the 
 ** "finsdolvefield" command to get component values.
 **
 ** As with any implementation of a "fast" neuronal structure like a
 ** Gap Junction, the integration timestep should be adjusted to be 
 ** small enough that the solution does not "blow up".  For the cell
 ** models used in the development of this code, a timestep of 1e-5 
 ** seconds works well for conductances on the order of 10.0e-9 
 ** (10 nanoSiemens), while values on the order of 100 nS need a 
 ** timestep of 1e-6 sec.  
 ** Gap Junction Conductance values as high as 50,000 nS have been
 ** succesfully simulated with this code, but required a timestep of
 ** 1e-8 (10 nanoseconds).
 **
 ** Written 12/2006 by Carson B Roberts (carson_roberts@yahoo.com)
 ********************************************************************/


str GapJPath = "/inputs/GapJ1"
     /****************************************************************
      ** This sets up the location where this particular Gap Junction 
      ** will be created.
      ****************************************************************/
copy /library/Gap_Junction {GapJPath}
     /************************************************************************
      ** Copy the prototype Gap Junction from the library to the place where 
      ** it will be used.  It can be referred to by "{GapJPath}" from now on.
      *************************************************************************/
setfield {GapJPath} Cell_1 {cellpath}
setfield {GapJPath} Cell_2 {cellpath2}
     /*****************************************************************
      ** Set up the prototype Gap Junction to know the names of the
      ** two hsolve elements. 
      ** These two lines should be edited to reflect the specific names
      ** of the two cells in the particular simulation in which this 
      ** script is included.
      *****************************************************************/
str GapJ_compt1 = "p1b2[1]"
str GapJ_compt2 = "p1b2[1]"
     /*************************************************************
      ** These two strings define the Pre- and Post- Synaptic 
      ** compartments for the Gap Junction.  {GapJ_compt1} should
      ** refer to a compartment in {Cell_1} and {GapJ_compt2}
      ** should refer to a compartment in {Cell_2}
      *************************************************************/
setfield {GapJPath} Comp_1 {GapJ_compt1}
setfield {GapJPath} Comp_2 {GapJ_compt2}
setfield {GapJPath} Gbar {G_Gap}
     /**************************************************************
      ** Tell the newly-created object what its location and
      ** parameters are.  The variable "{G_Gap}" (channel conductance)
      ** needs to have been given a value previously.  
      **************************************************************/

/***********************************************************************
 ** Below is an example of how a second Gap Junction can be made from 
 ** the prototype in the library.
 **********************************************************************/

// str GapJPath2 = "/inputs/GapJ2"
// copy /library/Gap_Junction {GapJPath2}
// setfield {GapJPath2} Cell_1 {cellpath}
// setfield {GapJPath2} Cell_2 {cellpath2}
// str GapJ2_compt1 = "p1[1]"
// str GapJ2_compt2 = "p1[1]"
// setfield {GapJPath2} Comp_1 {GapJ2_compt1}
// setfield {GapJPath2} Comp_2 {GapJ2_compt2}
// setfield {GapJPath2} Gbar {G_Gap}

Back To Top


Code to Include in a Run Script:

include GapJ.g
  /***********************************************************************
   ** Script that contains the definitions for the "GapJ"  Electrical 
   ** Synapse Gap Junction object, and a function to create one.
   **********************************************************************/
create_Gap_Junction
   /***********************************************************************
    ** Call the function "create_Gap_Junction" in script Gapj.g, to create
    ** the first instance of this object in the library.
    ***********************************************************************/
include Gap_Junction_setup.g
   /*************************************************************************
    ** A script that sets up one or more gap junctions, all based on copies
    ** of the one made in the library by the function "create_Gap_Junction"
    ************************************************************************/