Skip to content

neurord/stochdiff

Repository files navigation

Implementing reaction-diffusion using NeuroRD

Quick Start Guide

The model file consists of an xml file that specifies molecule species, reactions, initial concentrations, morphology, stimulation, and output frequency. Though not recommended, all of this information can be provided in a single file. The recommended method of model specification is to have separate files for reactions, morphology, initial conditions and stimulation.

Given a model file, the simulation is run with the following syntax:

java -jar path/to/neurord-3.x.x-all-deps.jar path/to/model/model.xml 

where neurord-3.x.x-all-deps.jar file contains the NeuroRD executable byte-code and model.xml is the model file.

Model_simple.xml in the examples directory shows how to specifiy a model with 2 species and 1 reaction. Additional examples of increasing complexity are in the examples directory, along with some output figures.

Model specification format

Six different xml files must be prepared to run a NeuroRD simulation. The master or model file contains parameters for the simulation run and names of the other five files providing data for the simulation. The other five files include morphology, reaction scheme, initial conditions, output definition and stimulation. The reactions scheme file contains names and characteristics of all molecules and reactions in the simulation, including diffusion constants. The morphology file provides details on compartments, such as dendrites, soma and spines. The initial conditions file specifies the beginning amounts and locations of molecules. The stimulation file provides details of signal inputs during the simulation. The output file specifies which molecules are provided as the results. These results, in the form of the number of particles of each type in each element at each timestep, are stored to files for processing once the simulation has completed.

The independent definition of morphology, reactions and stimulation in separate files makes NeuroRD ideal to investigate the interaction of these characteristics in models. For example, the reaction scheme is independent of morphology to facilitate the investigation of the role of morphology, and to allow different morphologies to be investigated with different signaling pathways and vice versa. It is important to note that not all file are independent of each other: 1. Reactions and morphology _are independent of each other. These files define the species involved in the simulations and the morphological compartments in which they can be found. Most of the other files depend on these "core model" files. If these change, it is likely that all subsequent files must change. However, the subsequent files can be changed yet retain the same reaction and morphology files (this is typically how simulation experiments are performed). 2. Initial conditions depends on the reaction file (where molecule species are defined) and and will depend on morphology when some species are confined to subregions of the model. Changes to these files allow exploration of the role of molecule concentration and localization. 3. Similarly, the stimulation file depends on the reaction file (you can only inject a species already defined) and morphology (you can only inject at a defined regions or labels). 4. The output file clearly depends on species defined in the reaction file. Output from specific regions depends also on morphology file.

In all files, lines beginning "<!--" are XML comments and can be left out of real model files. Comments are ended with “-->" and can span multiple lines.

Units

Times are expressed in milliseconds and distances in microns. Concentrations are in nanoMoles per litre, but the same quantities may alternatively be set by specifying a number density in particles per square micron (which is almost equivalent - a 1 nM solution averages about 0.6 particles per square micron). Reaction rates are in transitions per millisecond per concentration raise to the order or the reaction, and mobilities are in µm²/s.

Reactions Scheme File

The reaction file has two parts. The first part is a listing of all molecule species. There is one program statement for each molecule in which each species is given a name, an id, a diffusion constant, and units for the diffusion constant. Species names can have spaces in them, but the id cannot. The id usually does not have to be specified, the name with spaces and slashes replaced with underscores will be used by default. The format is:

<Specie name="name" id="id" kdiff="constant" kdiffunit="µm²/s" />

Two examples follow:

  1. example for two diffusing molecule specification:
<Specie name="IP3"   kdiff="100"   kdiffunit = "µm²/s"/>
  1. examples for non-diffusing molecule specification:
<Specie name="PIP2"  kdiff="0" />

Reactions

The second part of the reaction file is a list of all reactions. There are several statements for each reaction. In the first, the reaction is given a name and an id. The reaction names can have spaces in them, but the id cannot. The id usually does not have to be specified, the name with spaces and slashes replaced with underscores will be used by default. The name also doesn't have to be specified: a string of the form A+2×B→C will be used by default. Subsequent statements identify reactants, products, forward reaction rate, reverse reaction rate, and Q10 value. Note, the Q10 is currently not used. Zero or more products and reactants can be specified, but at least one reactant or product is required. The format is:

<Reaction name="name" id="id">
    <Reactant specieID="id"/>
    <Product specieID="id"/>
    <forwardRate> r₁ </forwardRate>
    <reverseRate> r₂ </reverseRate>
    <Q10> value </Q10>
</Reaction>

The attribute specieID= refers to one of the species declared above, and must match either the id or the name of one of the species. Enzyme reactions are specified as two bimolecular reactions, with the enzyme regenerated in the second step. An example of an enzyme reaction follows:

<Reaction>
    <Reactant specieID="PLCaG"                         />
    <Reactant specieID="PIP2"                       />
    <Product  specieID="PLCPIP2"                      />
    <forwardRate> 0.83e-06              </forwardRate>
    <reverseRate> 0.1e-03              </reverseRate>
</Reaction>

<Reaction>
    <Reactant specieID="PLCPIP2"                      />
    <Product  specieID="PLCaG"                         />
    <Product  specieID="IP3"                      />
    <forwardRate> 0.58e-03               </forwardRate>
</Reaction>

Stoichiometry

The stoichiometry of reactions is specified through two attributes: power="p" and n="n". Number n specifies how many molecules are consumed or produced in the reaction. Power p determines how the number of molecules influences reaction rate. The rate is proportional to

N·(N-1)·…·(N-p+1)

where N is the number of molecules of given species.

In the following specification, the rate would be proportional to N*(N-1):

<Reactant specieID="CKCamCa4" power="2"/>

Power p defaults to 1. Stoichiometry n defaults to p. If p is not specified but n is, the reaction is a “psuedo” higher order reaction in which multiple molecules bind with 1st order kinectics. E.g. if 2 molecules of cAMP bind to PKA, but the reaction rate is proportional to cAMP (not cAMP²), then specify the cAMP reactant as:

<Reactant specieID="cAMP" n="2"/>

which uses the optional n="2" attribute to specify that two cAMP molecules participate in the reaction. In this case, the concentration used to calculate rate or propensity is the concentration of cAMP, not the square of that concentration, but for each reaction two cAMP molecules are consumed.

Example

A decay reaction which in which the rate is proportional to the square of concentration can be defined as:

<Reaction name="decay">
   <Reactant specieID="A" power="2" />
   <forwardRate>0.83e-06</forwardRate>
   <Q10>0.2</Q10>
</Reaction>

For more examples, see Purkreactions.xml (no diffusion), and PurkreactionsDif.xml (with diffusion).

Note

Having a non-zero diffusion constant in a model with a single compartment/ single voxel will fail.

Morphology File

The morphology file specifies the morphology of the segments (which may be subdivided into smaller subvolumes for simulation). There are three program statements for each segment. In the first, each segment is given a unique identifier and may be give a region name, which does not have to be unique. Regions are used to group segments with the same initial conditions. The other two statements define the beginning coordinates, ending coordinates, radius, and an optional label. The label can be used as a site at which molecules are injected into the system, but labels cannot be used with "start on" specifications.

In general, segments are specified with a starting x,y,z and radius, and an ending x,y,z and radius:

<Segment  id="seg1" region="dendrite">
    <start x="1.0"     y="1.0"   z="0.0"  r="0.75"  label="pointA"  />
    <end   x="1.0"     y="3.0"   z="0.0"  r="0.75"  />
</Segment>

If a second segment is to be connected to the first it should start relative to the first compartment:

<Segment  id="seg2" region="soma">
    <start on="seg1"  at="end"/>
    <end   x="1.0"   y="4.0" z="0.0" r="1.5"/>
</Segment>

When two segments are connected, they need not have the same radius at the point of connection. In this case, a radius value must be specified when defining a new segment, as in the following example:

<Segment id="seg2" region="branch1">
    <start on="seg1" at="end" r="0.3" />
    <end   x="4.0"  y="1.5" z="0.0" r="0.1" />
</Segment>

If two segments are specified without specifying "start on", then thos two segments will not be connected, and molecules will not diffuse between them.

Branching segments are allowed. Branches are made by creating two segments beginning at the same site but terminating at different points. Where two daughter segments emerge from the same parent, they are offset so as not to overlap. For two dimensional models there is no freedom in the direction of offset. The grid elements are always rectangular, so daughter elements are connected as though they continued in line with the parent even if the morphology file shows them at an angle.

Spines

The SpineType and SpineAllocation statements allow a spine profile to be defined once and then applied to the surface of a structure. This allows for random placement of spine templates according to a specified density in a constrained region/segment of the defined morphology. Multiple spine types can be defined, e.g. randomly distributed long, thin spines among short, stubby spines.

The SpineType statement assigns an id to a spine type. It is followed by several Section statements that define the spine morphology. Each section statement has a width variable providing the radius of that section, an at= variable indicating the distance from the dendrite at which that radius begins to apply, an optional regionClass= designation, and an optional label. regionClass specifies the regions to which the voxels of the spine will belong to, which is useful for setting initial conditions and when calculating concentrations by region. The label gives a designation to a specific voxel and can be used as injection site. An example:

<SpineType id="spineA">
    <Section width="0.2" at="0.0" />
    <Section width="0.2" at="0.6" regionClass="neck" />
    <Section width="0.4" at="1.0" />
    <Section width="0.4" at="1.2" />
    <Section width="0.1" at="1.3" label="pointA" />
</SpineType>

The SpineAllocation statement assigns an id, specifies a spine type, specifies the region to which spines will be added, and the density of spines in that region. The lengthDensity is the average number of spines per micron of dendrite length. Alternatively you can specify areaDensity, which is the number per unit area. An example follows:

<SpineAllocation id="sa1" spineType="spineA" region="region1" lengthDensity="1.1" />

Each spine constructed this way gets a label of the form allocation_id[index].point_label, where allocation_id is the id from SpineAllocation statement, index is the number of the spine within the population of spines generated from that SpineAllocation statement, and point_label is the label from the original spine type statement. This gives rise to spines with labels "sa1[0].pointA", "sa1[1].pointA", "sa1[2].pointA", etc up to the number of spines resulting from the allocation rule, all attached to region1. These labels can be used to specify injection sites for stimulation. Regions defined for segments or spines can be used to specify initial conditions.

See purkmorph.xml, purkmoprhsml.xml and purkmorph2.xml for 1 and 2 compartment morphologies. Examples of branching are in morph1.xml and morph2.xml. Example of a spine allocation is in spines.xml.

Initial conditions File

The initial conditions file specifies the initial concentrations or densities of molecules. One default concentration set, which applies to all regions unless overridden, may be specified. Each statement provides a value for initial concentration of one species, in nanoMoles per litre. For example:

<ConcentrationSet>
    <NanoMolarity specieID="glu"     value="20"  />
    <NanoMolarity specieID="calcium" value="50"  />
</ConcentrationSet>

In addition, further sets can be defined with a "region" attribute corresponding to a region defined in the morphology file.

<ConcentrationSet region="dendrite">
    <NanoMolarity specieID="calcium" value="80"  />
    <NanoMolarity specieID="dopamine" value="30"  />
</ConcentrationSet>

For membrane localized molecules, it is possible to specify initial conditions as a density (picomoles per square meter), which places these molecules only in the submembrane voxels. The value attribute for a PicoSD element is the number of picomoles per square metre. For example, a surface density of 1 picomole/m², if spread over a layer 1 micron deep, gives a 1 nanoMolar solution. To average one particle per square micron, you need a PicoSD value of about 1.6. If a region is specified, then that SurfaceDensitySet applies only to that region. If no region is specified, then the SurfaceDensitySet applies to all submembrane voxels in regions without a SurfaceDensitySet. The following example includes the optional region="dendrite" to show its use:

<SurfaceDensitySet>
     <PicoSD  specieID="GaGTP"  value="003.729"    />
</SurfaceDensitySet>

<SurfaceDensitySet region="dendrite">
     <PicoSD  specieID="dopamine"  value="5"    />
     <PicoSD  specieID="PLC"    value="2500"  />
</SurfaceDensitySet>

For a given species, in a given region, if the voxel is submembrane voxel, and a SurfaceDensitySet for that region is present and specifies a concetration for that species, this concentration will be used. Otherwise, if the voxel is submembrane voxel, and a default SurfaceDensitySet is present and it specifies a concentration for that species, this concentration will be used. Otherwise, if a ConcentrationSet for that region is present, and specifies a concentration for that species, this concentration will be used. Otherwise, if the default ConcentrationSet specifies a concentration for that species, this concentration will be used. Otherwise, that species has an initial concentration of zero in that region.

When all four ConcentrationSets and SurfaceDensitySets specified in this section are combined, assuming a 1 µm depth of the submembrane, glu will have an initial concentration of 20 nM in all voxels, calcium will have an initial concentration of 80 nM in the denrite and 50 nM elsewhere, dopamine will have a concentration of 5 nM in the submembrane voxels of the dendrite and 30 nM elsewhere, GaGTP will have a concentration of 3.729 nM in all submembrane voxels and 0 nM elsewhere, and PLC will have a concentration of 2.5 µM in the submembrane voxels of the dendrite and 0 nM elsewhere.

See Purkic.xml for a complete initial conditions file.

Stimulation File

The stimulation file specifies the time and location of injection of molecules (which is optional) during a simulation. For example, calcium influx from extracellular space might occur or glutamate might be released from a neighboring terminal. Each program statement must specify the molecule injected and its site of injection. The injectionSite needs to be a labeld point, either a spine (below) or labeled segment. The injection into a segment occurs in the middle mesh element of the labeled end of the segment. There are two ways to specify the timing and rate of injection: in the first a pattern is interpreted by NeuroRD, in the second a simple array of values specifies the pattern.

In the first version, additional statements provide onset (in ms), duration (in ms) and rate (particles/ms). Optional statements can be used to specify a train of input by providing two more parameters: period, and end.

Multiple trains are possible with two more parameters — intertrain interval and number of trains:

<InjectionStim specieID="glu"  injectionSite="pointA">
    <onset>              100             </onset>
    <duration>           10              </duration>
    <rate>                50e3            </rate>
    <period>             400              </period>
    <end>                200              </end>
    <interTrainInterval>  10000           </interTrainInterval>
    <numTrains>           2               </numTrains>
</InjectionStim>

Note that the intertrain interval specifies the interval between repetition of the entire train (excluding the onset time).

image

In the second version, the rates are given as an array of times and points. The injection rate is assumed to be constant between two time points. Thus a last time point with a rate of 0 should be used to terminate an injection that is bounded in time.

<InjectionStim specieID="glu"  injectionSite="pointA">
     <rates> 100 30
             120  0
             300 40
             320  0
             400 50
             420  0
     </rates>
</InjectionStim>

image

For longer tables of injection values it might be convenient to store the table in an external file. This can be achieved using the standard XML include mechanism:

<InjectionStim specieID="glu"  injectionSite="pointA">
     <rates>
          <xi:include href="rates.txt" parse="text" />
     </rates>
</InjectionStim>

and the rates.txt file:

100 30
120  0
300 40
320  0
400 50
420  0

Since particles can only be injected, and not withdrawn, to produce transient elevations in concentration it may be necessary to inject a "binding partner" and add a reaction between the injected particle and the binding partner to lower the concentration of the unbound injected molecule.

Injection to spines is also possible by specifying a spine as follows:

<InjectionStim specieID="a" injectionSite="sa1[3,4,5].pointA">
     <onset>5.0</onset>
     <duration>10.0</duration>
     <rate>210</rate>
</InjectionStim>

The square brackets can contain:

  • a number i - matches just the specified point in the i-th spine
  • a comma-separated list of numbers - matches the points on those spines
  • a range specified with a colon, such as [1:4]. If the lower or upper limit is missing it is taken to be 0 or the population size respectively.
  • an asterisk, [*] to match the whole population.

The rate specified with <rate> is understood to be the total injection rate. In this example, we are injecting into three spines, so the rate will be 70 particles/ms for each of the spines, for a total of 210 particles/ms.

Note

Injecting into a non-existent spine will fail.

See Purksmlstim.xml, Purkstim.xml, and Purkdifstim.xml for examples.

Output scheme File

The output file specifies the file to which output is written and which molecules from which compartments are output at which dt. Multiple output blocks are allowed, for example if you want some molecules output more frequently than others, or from different regions.

Every OutputSet block must have in its definition one (and only) instance of: * filename Where filename is a string that specifies a sufix appended to the main output file name Additionally, every OutputSet block might have one (and only) instance of: * region or; * outputInterval A separate statement in each outputset block is used to indicate molecules to be included in the output file. For example:

<OutputSet filename = "dt01sml"  region="dendrite" outputInterval="1.0">
    <OutputSpecie                 name="glu"  />
</OutputSet>

If "region" is omitted then the concentrations (or number of particles) for all subvolumes in the system are saved. If "dt" is ommited then the concentrations (or number of particles) will be saved at every timestep (probably not a good idea).

Other examples are in Purkdifio.xml, and Purkio.xml.

Model File

The Model file is the “master file”, and serves to identify the files for other components needed to define the model as well as the type of calculation to be performed, discretization options, simulation seed(s) and various control parameters.

The first part of this files specifies the other files

<xi:include href="Purkreactions.xml" />
<xi:include href="Purkmorph2.xml" />
<xi:include href="Purksmlstim.xml" />
<xi:include href="Purkic.xml" />
<xi:include href="Purkdifio.xml" />

The reactions, morphology, and initial conditions represent the model. The stimulation and output files are not part of the model, but are part of the simulation experiment.

The remainder of the file specifies various run parameters

A geometry statement is used to specify how the morphology is interpreted. 2D implies that there are mutliple voxels in x and y directions, but only a single layer of voxels in the z dimension. Thus, there is a 3 dimensional volume, but diffusion occurs in 2 dimensions only. For 2D, you also specify the depth of the voxel. This parameter is ignored for 3D:

<geometry>2D</geometry>
<depth2D>0.5</depth2D>

A runtime statement is used to specify run time in milliseconds:

<runtime>                    2000                 </runtime>

A required simulationSeed statement specifies the seed for the random number generator. If spines are placed randomly, a separate random number generator is used, and a spineSeed statement must be added:

<spineSeed>123</spineSeed>
<simulationSeed>123</simulationSeed>

The discretization statement indicates how to subdivide the segments, i.e. the size of voxels or subvolumes used in running simulations. Smaller sizes require more calculations and result in a longer run time. Three different statements can be used within a discretization statement. The defaultMaxElementSide specifies the largest size (in microns) for each side of the subvolume in each segment. This is the default, and can be overriden by <maxElementSide> for specific regions, which specifies a region and the size of its voxels. The value supplied will be used only for that region. The <spineDeltaX> element specifies the size of subvolumes in spines. spineDeltaX defaults to defaultMaxElementSide. Spines have a one dimensional discretization. Example:

<discretization>
    <!-- discretization for spines, microns -->
    <spineDeltaX>0.1</spineDeltaX>

    <!-- default largest size for elements in bulk volumes, microns -->
    <defaultMaxElementSide>0.2</defaultMaxElementSide>
    <maxElementSide region="dendrite">0.4</maxElementSide>
 </discretization>

The actual size of the elements depends on the total radius or length of the compartment, and also the constraint that there are an odd number of voxels across the radius of the structure. The maxElementSize is approximately the maximum that you will achieve. I.e., with a maxElemetSide of 0.4, you may generate subvolumes of size 0.33, depending on the size of the compartment. It calculates the length of compartment, divided by maxElementSide. Then, it determines the number of subvolumes along the length by rounding the results. Then, it divides length by number of compartments to yield the actual element size. Thus, you can end up with a value slightly larger than max element size.

How to create a single compartment model: Make sure that defaultMaxElementSide is larger than the entier morphology.

How to easily change the total volume of your model (e.g. to explore effects of stochasticitiy) without affecting your initial conditions: increase depth2D

Warning

If maxElementSize is large enough to create only a single voxel in the height dimension (single submembrane voxel and no cytosolic voxels) then the initial condition specification <SurfaceDensitySet> will give half the total number of molecules compared to smaller maxElementSize producing two submembrane voxels with 1 or more cytosolic voxels.

The timestep statement specifies the time step, in milliseconds, used in fixed step calculations:

<fixedStepDt>  0.01     </fixedStepDt>

The outputQuantity statement specifies whether quantity of molecules in the output is number of molecules (NUMBER) or concentration (CONCENTRATION):

<outputQuantity>NUMBER</outputQuantity>

The outputInterval statement specifies the frequency (time interval) for writing out the complete state of the system. This file can be read by ccviz.

<outputInterval>1</outputInterval>

The few other parameters in this file you can ignore for now.

See Purkmodel.xml and Purkdifmodel.xml for complete model files

If you run Purkmodel.xml, the output should match the XPPAUT output from filename.ode. Then, if you use purkmorphsml.xml, and purksmlstim.xml, you should get similar results, but the stochastic fluctuations are significant for some of the molecules. Lastly, to create a two compartment model to see the effect of diffusion, you can use Purkdifmodel.xml

Running a Simulation

To run a simulation from the command line the following command should be issued:

java -jar path/to/neurord-3.x.x-all-deps.jar path/to/model/model.xml [output]

where neurord-3.x.x-all-deps.jar file contains the NeuroRD executable byte-code and model.xml is the model file (“master” file that contains the <SDRun> XML tag).

A number of messages will be printed at execution time. The same set of messages is printed to standard output and to the log file (output.log). Creation of the log file may be disabled, see below. A few constraints to note:

  1. The java executable is in the PATH for the current user in UNIX.
  2. NeuroRD.jar and model.xml are located in the same directory from where the command is issued or the full paths for these files have to be included as well. In other words, if neurord and your model are in the same directory, you can omit the path specification.

3) output is in the same directory from where the command is issued or the full path for the output file has to be included as well. In other words, the optional argument output specifies the base name of output files, and /or specifies the directory in which to place output files; their names will be created by suffix appending to the main output file name: output.out, output.h5, output.log, ... If the last argument is ommitted, the output name is the input file name without the .xml suffix. If the output name is a path to an existing directory, the output will be created in this directory using the input file name without the .xml suffix.

MAC USERS: if you get the following error:

Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException

use the following syntax:

java --add-modules java.se.ee -jar path/to/neurord-3.x.x-all-deps.jar path/to/model/model.xml 

UBUNTU ( and possiby other UNIX) USERS: if you see the the following error:

java.lang.UnsatisfiedLinkError: no jhdf5 in java.library.path

    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1867)

    at java.lang.Runtime.loadLibrary0(Runtime.java:870)

That means that you do not have the java hdf5 libraries installed (or java doesn't know how to find them). Install the java hdf5 library, libjhdf5.so or jarhdf*-3.3.2.jar. On UBUNTU version 22.04 and using neurord-v3.3.0, the following commands works:

sudo apt-get install openjdk-17-jdk

sudo apt-get install libhdf5-java

in Fedora, use the following command:

sudo dnf install jhdf5

MAC AND WINDOWS USERS: if you see either of the the following errors:

java.lang.UnsatisfiedLinkError: no jhdf5 in java.library.path

Exception in thread "main" java.lang.RuntimeException: java.lang.UnsatisfiedLinkError: hdf5

That means that either you do not have the java hdf5 libraries installed, or java doesn't know how to find them. To fix the problem (using neurord-v3.2.4 ), install the java hdf5 libraries by installing HDFView+Object 2.14 (do not install version 3), which includes jarhdf.jar, jarhdf5.jar and hdfobject.jar (and slf4j*.jar) as well as .dll files. In windows, if you are running neurord from the command line, install the windows 32bit version, obtained from https://support.hdfgroup.org/products/java/release/download.html Extract the zip archive, run the installer. Then, execute neurord (version 3.2.4) using the following syntax:

java -Djava.library.path="C:/users/your_name/Appdata/Local/Apps/HDF_group/HDFView/2.14.0/lib" -jar neurord-3.2.4-all-deps.jar Modelxxx.xml

If that doesn't work, possibly your jhdf5 libraries are installed elsewhere. Right click on the HDFview icon put on your desktop, select properties, and see what the Target is - copy that text string (except replace ending hdfview.bat with lib) as your java.library.path. You must use double quotes, a single quote won't work either.

If you still cannot fix the problem, you can run neurord using

java -jar path/to/neurord-3.2.4-all-deps.jar -Dneurord.writers=text path/to/model/model.xml

and get text output.

With the default option output is written as an [HDF5] output. In that case one output file is created, plus the log file. The format of the HDF5 output file uses the .h5 extension.

The option -Dneurord.writers=textspecifies that output is written as a set of text files and three (or more) output files are generated. One is the model.out file, which contains every molecule in every subvolume at a time interval specified by output interval. A second is the mesh file, which lists four xyz coordinates, depth and volume of every mesh element in the system. This can be used to check the morphology, and to convert from molecule quantity to concentration. The third file (or files) are those specified in the IO.xml file.

It is also possible to use an HDF5 file as a source of the model and/or exact population. The .h5 file contains the serialized XML which was used to create the model. If a file with the .h5 extension is given as the first argument (instead of an .xml file), model description will be extracted from it.

The random seed is also extracted from the .h5 file, which means that by using the HDF5 file as input, we can rerun the exact same simulation. In case the source .h5 file contains multiple trials, -Dneurord.source_trial=N can be used to specify which trial's seed should be used. It is also possible to override the seed as usual with -Dneurord.sdrun.simulationSeed=X. If the current simulation includes multiple trials, the seed is ignored; this is the case always when multiple trials are simulated. In effect, if an .h5 file is used as model source, the seed may be the seed specified by the original model, the seed used for the original simulation, the seed specifed through Java properties, or the randomized value if multiple trials are executed.

When an .h5 file is used as model input, the initial population can be taken from the results of that simulation. This is achieved by specifying --ic-time=T, where T is a timestamp of some saved state (T >= 0). It is also possible to specify --ic-time=-1, which uses the last T found in the file. Option --ic-trial=N can be used to pick a specific trial. It is possible but slightly risky to load initial conditions from an h5 file that it also the output file: the original file is overwritten at the beginning of the simulation after loading the model and initial conditions.

Please note: the list of species in the file containing the input state must match exactly. This is checked by the program. The list of reactions doesn't have to match, but be aware that if the list of reactions (or their constants) is changed, if the input state was a steady state, it might not be anymore with the new set of reactions.

Overrides

XML configuration can be overriden on the commandline:

java -Dneurord.sdrun.<element>=<value> ...

For example, to set /SDRun/discretization/maxElementSide to 3:

java -Dneurord.sdrun.discretization.maxElementSide=3 ...

In addition, some important parameters can be specified with options on the command line. For example, to specify the time to simulate:

java neurord.StochDiff -t 2000 ...

This is a nicer alterantive to overriding the XML element with -Dneurord.sdrun.runtime=2000.

Full list of options can be displayed using --help:

java neurord.StochDiff --help

usage: java neurord.StochDiff [option...] <model> [<output>]

where the <model> is an XML specification of the model to run. The optional
<output> specifies where the results should be stored (w/o extension). When not
supplied, <output> defaults to <model> without the extension.

 -D <property=value>     set java property
 -i,--ic <arg>           output file to take the initial conditions from
    --ic-time <arg>      time to take the ICs from (default: none)
    --ic-trial <arg>     trial to take the seed from (default: 0)
    --log <arg>          log file name ("no" to disable)
 -s,--statistics <arg>   override statistics gathering
                         ({none|injections|by-channel|by-event}[:interval])
 -t,--runtime <arg>      override simulation time
 -v,--verbose            increase log level
    --version            print version string and exit

Recognized properties (use as -D<property>=<value>):
neurord.mmap_appender (default: true)       User MemoryMappedFileAppender
neurord.writers (default: [h5])             Write output in those formats
neurord.trials (default: 1)                 How many trials to run
neurord.threads (default: 0)                How many threads to use (0 == #CPUs)
neurord.log_events (default: false)         Log detailed information about every event
neurord.curtail_leaps (default: false)      Do not allow leaps to extend past reporting time
neurord.neq.update_times (default: true)    Update putative times using Gibson&Bruck
neurord.neq.only_init (default: false)      Terminate after initialization is finished
neurord.neq.check_updates (default: false)  Perform extensive checks of propensity changes
neurord.neq.log_queue (default: false)      Log debug info about queue operations
neurord.neq.log_propensity (default: false) Log debug info about propensity calculations
neurord.neq.log_reposition (default: false) Log debug info about movements in the queue
neurord.neq.log_debug_start (default: NaN)  Turn on debugging at this time in simulation
neurord.neq.log_start_events (default: 99)  Print information about this many events at startup
neurord.compression (default: 1)            Compression level in HDF5 output
neurord.sdrun.* (default: none)             Override values in the XML tree

Logging

Log4j2 is used for manage logging. It may be configured in the usual ways: https://logging.apache.org/log4j/2.0/manual/configuration.html. The default configuration prints most messages as INFO level. This can be changed by overriding the log2j.xml configuration file completely, or by overriding the configuration for specific loggers:

java -Dlog.<logger-name>=<level> ...

where level can be one of ALL, TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF. For example:

java -Dlog.neurord.numeric.grid.NextEventQueue=debug ...

By default, the same output is printed to the console and to the log file (named after the model file, but with “.log” at the end). The name of the log file can be specified with --log=.... If the command is not run from the terminal (standard input is not attached to a tty), only the log file is written.

For long simulations the log file can get pretty big. To disable the log file altogether, use:

java --log=no ...

Converting from NeuroRDv2 to NeuroRDv3

The first two changes are absolutely required; whereas the third change is recommended for the model file. The fourth change is required if you have this type of reaction in your v2 reaction file. The fifth change is also recommended if you have been using "fake" spines to inject molecules into the dendrites.

  1. In top level Model file, change
<SDRun>

to

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<SDRun xmlns:xi="http://www.w3.org/2001/XInclude" xmlns="http://stochdiff.textensor.org">
  1. In top level Model file, change specification of additional xml files, e.g. from
<reactionSchemeFile>Rxn_glubuf</reactionSchemeFile>
<morphologyFile>Morph1.5um</morphologyFile>
<initialConditionsFile>IC_glubuf</initialConditionsFile>

to
<xi:include href="Rxn_glubuf.xml" />
<xi:include href="Morph1.5um.xml" />
<xi:include href="IC_glubuf.xml" />
  1. In top level Model file, change numerical method to the more efficient GRID_ADAPTIVE (not required, but recommended), i.e., from
<calculation>GRID_STEPPED_STOCHASTIC</calculation>

to
<calculation>GRID_ADAPTIVE</calculation>
  1. Version 3 allows higher order reactions. It no longer allows specification of the same reactant (or product) more than once in a reaction. Instead, you would specify the reactant once, with a "power" value. E.g., if you have a reaction block like this:
<Reaction name = "CKCam_bind" id="CKCam_bind">
<Reactant specieID="CKCaMCa4"/>
    <Reactant specieID="CKCaMCa4"/>
<Product specieID="Complex"/>
<forwardRate>0.0001e-3</forwardRate>
    <reverseRate>10e-3</reverseRate>
<Q10>2</Q10>
</Reaction>

change it to this:

<Reaction name = "CKCam_bind" id="CKCam_bind">
<Reactant specieID="CKCaMCa4" power="2"/>
<Product specieID="Complex"/>
<forwardRate>0.0001e-3</forwardRate>
    <reverseRate>10e-3</reverseRate>
<Q10>2</Q10>
</Reaction>
  1. In version 2, it was not possible to inject at arbitrary locations along a dendrite. One approach around this was to create tiny little spines, and stimulate into them. To eliminate these, it is necessary to change the morphology file: eliminate the fake spines by deleting this line:
<SpineAllocation id="fake" spineType="spineTiny" region="dendrite"  lengthDensity="2."/>

    and change the Stimulation file to inject into the dendrite.  I.e., change from:
<InjectionStim specieID="L" injectionSite="fake[:].pointI">
   <onset>3000</onset>

<duration>10000</duration> <rate>130</rate> </InjectionStim>

to (assuming your dendrite segment is called "dend"):

<InjectionStim specieID="L" injectionSite=dend:submembrane">
   <onset>3000</onset>

<duration>10000</duration> <rate>130</rate> </InjectionStim>

License

This software is licensed under the GNU Publice License, version 2 or any later, at your option.

[HDF5]: https://www.hdfgroup.org/HDF5/