Conventions#
This page documents various conventions in use in NeuroML.
Prefer underscores instead of spaces#
In general, please prefer underscores _
instead of spaces wherever possible, in filenames and ids.
Component IDs: NmlId#
Some Components take an id
parameter of type NmlId
to set an ID for them.
They can then be referred to using their IDs when constructing paths and so on.
IDs of type NmlId
in NeuroML are strings and have certain constraints:
they must start with an alphabet (either small or capital) or an underscore
they may include alphabets, both small and capital letters, numbers and underscores
IDs are also checked during validation, so if an ID does not follow these constraints, the validation will throw an error.
File naming#
When naming different NeuroML files, we suggest the following suffixes:
channel.nml
for NeuroML files describing ion channels, for example:Na.channel.nml
cell.nml
for NeuroML files describing cells, for example:hh.cell.nml
synapse.nml
for NeuroML files describing synapses, for example:AMPA.synapse.nml
net.nml
for NeuroML files describing networks of cells, for example:excitatory.net.nml
For LEMS files that describe simulations of NeuroML models (“LEMS Simulation files”), we suggest that:
file names start with the
LEMS_
prefix,file names end in
xml
For example LEMS_HH_Simulation.xml
.
Neuron segments#
When naming segments in multi-compartmental neuron models, we suggest the following prefixes:
axon_
for axonal segmentsdend_
for dendritic segmentssoma_
for somatic segments
There are 3 specific recommended names for segment groups which contain ALL of the somatic, dendritic or axonal segments
axon_group
for the group of all axonal segmentsdendrite_group
for the group of all dendritic segmentssoma_group
for the group of all somatic segments
Ideally every segment should be a member of one and only one of these groups.