From 2a52e4176dbe36a0f6c0423f7367d93de764c6ba Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 15 Jan 2025 08:44:19 +0000 Subject: [PATCH 01/18] Initial test with cect/Connectome toolbox --- c302/__init__.py | 21 +++++++--- c302/c302_Full.py | 2 +- c302/c302_Oscillator.py | 2 +- examples/LEMS_c302_A_Oscillator.xml | 31 ++++++++------- examples/LEMS_c302_B_Oscillator.xml | 59 ++++++++++++++-------------- examples/LEMS_c302_C1_Oscillator.xml | 59 ++++++++++++++-------------- examples/LEMS_c302_C2_Oscillator.xml | 59 ++++++++++++++-------------- examples/LEMS_c302_C_Oscillator.xml | 59 ++++++++++++++-------------- examples/LEMS_c302_D1_Oscillator.xml | 59 ++++++++++++++-------------- examples/LEMS_c302_D_Oscillator.xml | 59 ++++++++++++++-------------- examples/c302_A_Oscillator.net.nml | 3 +- examples/c302_B_Oscillator.net.nml | 3 +- examples/c302_C1_Oscillator.net.nml | 3 +- examples/c302_C2_Oscillator.net.nml | 3 +- examples/c302_C_Oscillator.net.nml | 3 +- examples/c302_D1_Oscillator.net.nml | 3 +- examples/c302_D_Oscillator.net.nml | 3 +- setup.py | 1 + 18 files changed, 228 insertions(+), 204 deletions(-) diff --git a/c302/__init__.py b/c302/__init__.py index 83ec8a02..9c042140 100755 --- a/c302/__init__.py +++ b/c302/__init__.py @@ -23,6 +23,8 @@ import neuroml.writers as writers import neuroml.loaders as loaders +import cect + # import c302.bioparameters import airspeed @@ -93,7 +95,11 @@ def load_data_reader(data_reader="SpreadsheetDataReader"): Returns: reader (obj): The data reader object """ - return importlib.import_module("c302.%s" % data_reader) + # return importlib.import_module("c302.%s" % data_reader) + if "cect" in data_reader: + return importlib.import_module("%s" % data_reader) + else: + return importlib.import_module("c302.%s" % data_reader) def get_str_from_expnotation(num): @@ -107,7 +113,7 @@ def get_str_from_expnotation(num): return "{0:.15f}".format(num) -def get_muscle_position(muscle, data_reader="SpreadsheetDataReader"): +def get_muscle_position(muscle, data_reader): if muscle == "MANAL" or muscle == "MVULVA": return 0, 0, 0 # TODO: Pull these positions from openworm/owmeta-data @@ -449,7 +455,7 @@ def get_file_name_relative_to_c302(file_name): return os.path.relpath(os.environ["C302_HOME"], file_name) -def get_cell_names_and_connection(data_reader="SpreadsheetDataReader", test=False): +def get_cell_names_and_connection(data_reader, test=False): # Use the spreadsheet reader to give a list of all cells and a list of all connections # This could be replaced with a call to "DatabaseReader" or "OpenWormNeuroLexReader" in future... # If called from unittest folder ammend path to "../../../../" @@ -463,9 +469,7 @@ def get_cell_names_and_connection(data_reader="SpreadsheetDataReader", test=Fals return cell_names, conns -def get_cell_muscle_names_and_connection( - data_reader="SpreadsheetDataReader", test=False -): +def get_cell_muscle_names_and_connection(data_reader, test=False): mneurons, all_muscles, muscle_conns = load_data_reader( data_reader ).read_muscle_data() @@ -707,6 +711,11 @@ def generate( "\n\nParameters and setting used to generate this network:\n\n" + " Data reader: %s\n" % data_reader + " c302 version: %s\n" % __version__ + + ( + " cect version: %s\n" % (cect.__version__) + if "cect" in data_reader + else "" + ) + " owmeta version: %s\n" % ("- not installed -" if not owmeta_installed else owmeta_version) + " owmeta_core version: %s\n" diff --git a/c302/c302_Full.py b/c302/c302_Full.py index cac1de50..e9a99d6e 100644 --- a/c302/c302_Full.py +++ b/c302/c302_Full.py @@ -79,7 +79,7 @@ def setup( reference = "c302_%s_Full" % parameter_set - cell_names, conns = c302.get_cell_names_and_connection() + cell_names, conns = c302.get_cell_names_and_connection(data_reader) nml_doc = None diff --git a/c302/c302_Oscillator.py b/c302/c302_Oscillator.py index a072ef7d..1ce32812 100644 --- a/c302/c302_Oscillator.py +++ b/c302/c302_Oscillator.py @@ -9,7 +9,7 @@ def setup( duration=1000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader="cect.SpreadsheetDataReader", param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/examples/LEMS_c302_A_Oscillator.xml b/examples/LEMS_c302_A_Oscillator.xml index e622bf39..77e6db30 100644 --- a/examples/LEMS_c302_A_Oscillator.xml +++ b/examples/LEMS_c302_A_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -67,20 +68,20 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_B_Oscillator.xml b/examples/LEMS_c302_B_Oscillator.xml index da31c6a1..e363a7bf 100644 --- a/examples/LEMS_c302_B_Oscillator.xml +++ b/examples/LEMS_c302_B_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -68,39 +69,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C1_Oscillator.xml b/examples/LEMS_c302_C1_Oscillator.xml index 9c1aa087..52de272b 100644 --- a/examples/LEMS_c302_C1_Oscillator.xml +++ b/examples/LEMS_c302_C1_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -78,39 +79,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C2_Oscillator.xml b/examples/LEMS_c302_C2_Oscillator.xml index ceaa89f1..25268508 100644 --- a/examples/LEMS_c302_C2_Oscillator.xml +++ b/examples/LEMS_c302_C2_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -107,39 +108,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C_Oscillator.xml b/examples/LEMS_c302_C_Oscillator.xml index 7d097322..b48c0ab1 100644 --- a/examples/LEMS_c302_C_Oscillator.xml +++ b/examples/LEMS_c302_C_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -76,39 +77,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_D1_Oscillator.xml b/examples/LEMS_c302_D1_Oscillator.xml index dbef6c6e..4d1f0215 100644 --- a/examples/LEMS_c302_D1_Oscillator.xml +++ b/examples/LEMS_c302_D1_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -112,39 +113,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_D_Oscillator.xml b/examples/LEMS_c302_D_Oscillator.xml index dd5f9eca..c6f8e31b 100644 --- a/examples/LEMS_c302_D_Oscillator.xml +++ b/examples/LEMS_c302_D_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -105,39 +106,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/c302_A_Oscillator.net.nml b/examples/c302_A_Oscillator.net.nml index 3207ba7f..cbf59c55 100644 --- a/examples/c302_A_Oscillator.net.nml +++ b/examples/c302_A_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_B_Oscillator.net.nml b/examples/c302_B_Oscillator.net.nml index be32ff6d..462e705e 100644 --- a/examples/c302_B_Oscillator.net.nml +++ b/examples/c302_B_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C1_Oscillator.net.nml b/examples/c302_C1_Oscillator.net.nml index 69225c56..8e65f836 100644 --- a/examples/c302_C1_Oscillator.net.nml +++ b/examples/c302_C1_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C2_Oscillator.net.nml b/examples/c302_C2_Oscillator.net.nml index 8e184c87..95bcda46 100644 --- a/examples/c302_C2_Oscillator.net.nml +++ b/examples/c302_C2_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C_Oscillator.net.nml b/examples/c302_C_Oscillator.net.nml index f75bffc6..206150b5 100644 --- a/examples/c302_C_Oscillator.net.nml +++ b/examples/c302_C_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_D1_Oscillator.net.nml b/examples/c302_D1_Oscillator.net.nml index 9e8009a1..fb9d7fac 100644 --- a/examples/c302_D1_Oscillator.net.nml +++ b/examples/c302_D1_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_D_Oscillator.net.nml b/examples/c302_D_Oscillator.net.nml index 362125a8..b6d4243f 100644 --- a/examples/c302_D_Oscillator.net.nml +++ b/examples/c302_D_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/setup.py b/setup.py index bde3bb6f..f9b7e6ee 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ "xlwt", "pyNeuroML>=0.5.11", "WormNeuroAtlas", + "cect", ], entry_points={"console_scripts": ["c302 = c302.__init__:main"]}, package_data={"c302": ["*.xml", "data/*", "NeuroML2/*"]}, From 5ceb02d9bca97b84a9517c48666ede9c40982ca9 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 15 Jan 2025 09:17:14 +0000 Subject: [PATCH 02/18] Centralise definition of data readers --- c302/NeuroMLUtilities.py | 1 - c302/__init__.py | 21 +++++++++------------ c302/c302_FW.py | 4 ++-- c302/c302_Full.py | 2 +- c302/c302_IClamp.py | 2 +- c302/c302_IClampMuscle.py | 2 +- c302/c302_MuscleTest.py | 2 +- c302/c302_Muscles.py | 2 +- c302/c302_MusclesSine.py | 2 +- c302/c302_OscillatorM.py | 2 +- c302/c302_Pharyngeal.py | 2 +- c302/c302_RIA.py | 2 +- c302/c302_Social.py | 2 +- c302/c302_Syns.py | 2 +- c302/c302_TapWithdrawal.py | 4 ++-- c302/c302_TargetMuscle.py | 2 +- c302/c302_utils.py | 2 +- c302/runAndPlot.py | 10 +++++----- 18 files changed, 31 insertions(+), 35 deletions(-) diff --git a/c302/NeuroMLUtilities.py b/c302/NeuroMLUtilities.py index ed31fae3..e2037155 100644 --- a/c302/NeuroMLUtilities.py +++ b/c302/NeuroMLUtilities.py @@ -43,7 +43,6 @@ def fract(a, b, f): if __name__ == "__main__": - # from SpreadsheetDataReader import read_data, read_muscle_data from WormNeuroAtlasReader import read_data, read_muscle_data cells, neuron_conns = read_data(include_nonconnected_cells=True) diff --git a/c302/__init__.py b/c302/__init__.py index 9c042140..d914409c 100755 --- a/c302/__init__.py +++ b/c302/__init__.py @@ -38,10 +38,7 @@ import math from lxml import etree import re - import json - - import collections try: @@ -64,6 +61,10 @@ except Exception: from urllib.error import URLError # Python 3 +DEFAULT_DATA_READER = "SpreadsheetDataReader" +# DEFAULT_DATA_READER = "cect.Cook2019HermReader" +FW_DATA_READER = "UpdatedSpreadsheetDataReader2" + logging.basicConfig() here = os.path.abspath(os.path.dirname(__file__)) @@ -87,7 +88,7 @@ def print_(msg, print_it=True): # print_it=False when not verbose print("%s %s" % (pre, msg.replace("\n", "\n" + pre))) -def load_data_reader(data_reader="SpreadsheetDataReader"): +def load_data_reader(data_reader): """ Imports and returns data reader module Args: @@ -166,8 +167,8 @@ def process_args(): "-datareader", type=str, metavar="", - default="SpreadsheetDataReader", - help='Use a specific data reader. Possible values are: "SpreadsheetDataReader". (default: SpreadsheetDataReader)', + default=DEFAULT_DATA_READER, + help="Use a specific data reader. (default: %s)" % DEFAULT_DATA_READER, ) parser.add_argument( @@ -456,7 +457,7 @@ def get_file_name_relative_to_c302(file_name): def get_cell_names_and_connection(data_reader, test=False): - # Use the spreadsheet reader to give a list of all cells and a list of all connections + # Use the data reader to give a list of all cells and a list of all connections # This could be replaced with a call to "DatabaseReader" or "OpenWormNeuroLexReader" in future... # If called from unittest folder ammend path to "../../../../" @@ -633,7 +634,7 @@ def mirror_param(params, k, v): def generate( net_id, params, - data_reader="SpreadsheetDataReader", + data_reader=DEFAULT_DATA_READER, cells=None, cells_to_plot=None, cells_to_stimulate=None, @@ -1015,10 +1016,6 @@ def generate( data_reader ) - # print(all_muscles) - # if data_reader == "SpreadsheetDataReader": - # all_muscles = get_muscle_names() - if muscles_to_include is None or muscles_to_include is True: muscles_to_include = all_muscles elif muscles_to_include is False: diff --git a/c302/c302_FW.py b/c302/c302_FW.py index b1128f44..fd7db30d 100644 --- a/c302/c302_FW.py +++ b/c302/c302_FW.py @@ -17,7 +17,7 @@ def setup( duration=2000, dt=0.05, target_directory="examples", - data_reader="UpdatedSpreadsheetDataReader2", + data_reader=c302.FW_DATA_READER, param_overrides={}, verbose=True, config_param_overrides={}, @@ -256,6 +256,6 @@ def setup( if __name__ == "__main__": parameter_set = sys.argv[1] if len(sys.argv) == 2 else "C2" - data_reader = sys.argv[2] if len(sys.argv) == 3 else "UpdatedSpreadsheetDataReader2" + data_reader = sys.argv[2] if len(sys.argv) == 3 else c302.FW_DATA_READER setup(parameter_set, generate=True, data_reader=data_reader) diff --git a/c302/c302_Full.py b/c302/c302_Full.py index e9a99d6e..18a3d391 100644 --- a/c302/c302_Full.py +++ b/c302/c302_Full.py @@ -11,7 +11,7 @@ def setup( dt=0.05, target_directory="examples", muscles_to_include=None, # None => All! - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_IClamp.py b/c302/c302_IClamp.py index 2d62713d..e60f9a7e 100644 --- a/c302/c302_IClamp.py +++ b/c302/c302_IClamp.py @@ -11,7 +11,7 @@ def setup( duration=None, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_IClampMuscle.py b/c302/c302_IClampMuscle.py index 342f2b33..4a08abea 100644 --- a/c302/c302_IClampMuscle.py +++ b/c302/c302_IClampMuscle.py @@ -10,7 +10,7 @@ def setup( duration=2000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, verbose=True, ): diff --git a/c302/c302_MuscleTest.py b/c302/c302_MuscleTest.py index 950cf17e..6b5a6c38 100644 --- a/c302/c302_MuscleTest.py +++ b/c302/c302_MuscleTest.py @@ -17,7 +17,7 @@ def setup( duration=2000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, verbose=True, config_param_overrides={}, diff --git a/c302/c302_Muscles.py b/c302/c302_Muscles.py index ee624555..40d073f0 100644 --- a/c302/c302_Muscles.py +++ b/c302/c302_Muscles.py @@ -10,7 +10,7 @@ def setup( duration=1000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_MusclesSine.py b/c302/c302_MusclesSine.py index 0a95ce81..da29de4b 100644 --- a/c302/c302_MusclesSine.py +++ b/c302/c302_MusclesSine.py @@ -9,7 +9,7 @@ def setup( duration=1000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_OscillatorM.py b/c302/c302_OscillatorM.py index 00189354..0801ddc8 100644 --- a/c302/c302_OscillatorM.py +++ b/c302/c302_OscillatorM.py @@ -9,7 +9,7 @@ def setup( duration=1000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_Pharyngeal.py b/c302/c302_Pharyngeal.py index 9392de49..a0759a64 100644 --- a/c302/c302_Pharyngeal.py +++ b/c302/c302_Pharyngeal.py @@ -9,7 +9,7 @@ def setup( duration=500, dt=0.01, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_RIA.py b/c302/c302_RIA.py index 80349871..ee1fbfc8 100644 --- a/c302/c302_RIA.py +++ b/c302/c302_RIA.py @@ -10,7 +10,7 @@ def setup( duration=1000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, verbose=True, ): diff --git a/c302/c302_Social.py b/c302/c302_Social.py index bd48e250..02a58078 100644 --- a/c302/c302_Social.py +++ b/c302/c302_Social.py @@ -23,7 +23,7 @@ def setup( duration=2500, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_Syns.py b/c302/c302_Syns.py index befeed8d..b3bbdc93 100644 --- a/c302/c302_Syns.py +++ b/c302/c302_Syns.py @@ -10,7 +10,7 @@ def setup( duration=500, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_TapWithdrawal.py b/c302/c302_TapWithdrawal.py index b190968f..bc86b202 100644 --- a/c302/c302_TapWithdrawal.py +++ b/c302/c302_TapWithdrawal.py @@ -19,7 +19,7 @@ def setup( duration=400, dt=0.05, target_directory="examples", - data_reader="UpdatedSpreadsheetDataReader", + data_reader=c302.FW_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, @@ -469,4 +469,4 @@ def setup( if __name__ == "__main__": parameter_set = sys.argv[1] if len(sys.argv) == 2 else "C2" - setup(parameter_set, generate=True, data_reader="UpdatedSpreadsheetDataReader") + setup(parameter_set, generate=True, data_reader=c302.FW_DATA_READER) diff --git a/c302/c302_TargetMuscle.py b/c302/c302_TargetMuscle.py index b04b28fa..dfa1134e 100644 --- a/c302/c302_TargetMuscle.py +++ b/c302/c302_TargetMuscle.py @@ -9,7 +9,7 @@ def setup( duration=3000, dt=0.05, target_directory="examples", - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, param_overrides={}, config_param_overrides={}, verbose=True, diff --git a/c302/c302_utils.py b/c302/c302_utils.py index 81c55721..2b484545 100644 --- a/c302/c302_utils.py +++ b/c302/c302_utils.py @@ -126,7 +126,7 @@ def plot_c302_results( directory="./", save=True, show_plot_already=True, - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, plot_ca=True, ): params = {"legend.fontsize": 8, "font.size": 10} diff --git a/c302/runAndPlot.py b/c302/runAndPlot.py index e8d7f0d9..cb9e8ac5 100644 --- a/c302/runAndPlot.py +++ b/c302/runAndPlot.py @@ -24,7 +24,7 @@ def run_c302( simulator, save=False, show_plot_already=True, - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, verbose=False, plot_ca=True, plot_connectivity=False, @@ -142,7 +142,7 @@ def run_c302( 0.05, "jNeuroML_NEURON", config_package="notebooks.configs.AVB", - data_reader="UpdatedSpreadsheetDataReader2", + data_reader=c302.FW_DATA_READER, ) elif "-fw1" in sys.argv: @@ -154,7 +154,7 @@ def run_c302( 5000, 0.005, "jNeuroML_NEURON", - data_reader="UpdatedSpreadsheetDataReader2", + data_reader=c302.FW_DATA_READER, save=True, show_plot_already=False, ) @@ -167,7 +167,7 @@ def run_c302( 5000, 0.05, "jNeuroML_NEURON", - data_reader="UpdatedSpreadsheetDataReader2", + data_reader=c302.FW_DATA_READER, save=True, show_plot_already=True, ) @@ -503,7 +503,7 @@ def run_c302( save=True, show_plot_already=False, plot_connectivity=True, - data_reader="SpreadsheetDataReader", + data_reader=c302.DEFAULT_DATA_READER, ) html += " \n" From 457fa779edfd5f7f9d90548a5ffe7bdfbca89482 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 15 Jan 2025 11:33:53 +0000 Subject: [PATCH 03/18] Using cect.SpreadsheetDataReader as default --- c302/__init__.py | 21 +- examples/LEMS_c302_A_Full.xml | 3 +- examples/LEMS_c302_A_IClamp.xml | 9 +- examples/LEMS_c302_A_Muscles.xml | 217 +++++++------- examples/LEMS_c302_A_Pharyngeal.xml | 43 +-- examples/LEMS_c302_A_Social.xml | 17 +- examples/LEMS_c302_A_Syns.xml | 15 +- examples/LEMS_c302_B_Full.xml | 3 +- examples/LEMS_c302_B_IClamp.xml | 15 +- examples/LEMS_c302_B_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_B_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_B_Social.xml | 31 +- examples/LEMS_c302_B_Syns.xml | 35 +-- examples/LEMS_c302_C0_Full.xml | 3 +- examples/LEMS_c302_C0_IClamp.xml | 15 +- examples/LEMS_c302_C0_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_C0_Oscillator.xml | 59 ++-- examples/LEMS_c302_C0_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_C0_Social.xml | 31 +- examples/LEMS_c302_C0_Syns.xml | 35 +-- examples/LEMS_c302_C1_Full.xml | 3 +- examples/LEMS_c302_C1_IClamp.xml | 15 +- examples/LEMS_c302_C1_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_C1_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_C1_Social.xml | 31 +- examples/LEMS_c302_C1_Syns.xml | 35 +-- examples/LEMS_c302_C2_Full.xml | 3 +- examples/LEMS_c302_C2_IClamp.xml | 15 +- examples/LEMS_c302_C2_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_C2_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_C2_Social.xml | 31 +- examples/LEMS_c302_C2_Syns.xml | 35 +-- examples/LEMS_c302_C_Full.xml | 3 +- examples/LEMS_c302_C_IClamp.xml | 15 +- examples/LEMS_c302_C_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_C_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_C_Social.xml | 31 +- examples/LEMS_c302_C_Syns.xml | 35 +-- examples/LEMS_c302_D1_Full.xml | 3 +- examples/LEMS_c302_D1_IClamp.xml | 15 +- examples/LEMS_c302_D1_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_D1_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_D1_Social.xml | 31 +- examples/LEMS_c302_D1_Syns.xml | 35 +-- examples/LEMS_c302_D_Full.xml | 3 +- examples/LEMS_c302_D_IClamp.xml | 15 +- examples/LEMS_c302_D_Muscles.xml | 431 ++++++++++++++------------- examples/LEMS_c302_D_Pharyngeal.xml | 83 +++--- examples/LEMS_c302_D_Social.xml | 31 +- examples/LEMS_c302_D_Syns.xml | 35 +-- examples/c302_A_Full.net.nml | 3 +- examples/c302_A_IClamp.net.nml | 3 +- examples/c302_A_Muscles.net.nml | 3 +- examples/c302_A_Pharyngeal.net.nml | 3 +- examples/c302_A_Social.net.nml | 3 +- examples/c302_A_Syns.net.nml | 3 +- examples/c302_B_Full.net.nml | 3 +- examples/c302_B_IClamp.net.nml | 3 +- examples/c302_B_Muscles.net.nml | 3 +- examples/c302_B_Pharyngeal.net.nml | 3 +- examples/c302_B_Social.net.nml | 3 +- examples/c302_B_Syns.net.nml | 3 +- examples/c302_C0_Full.net.nml | 3 +- examples/c302_C0_IClamp.net.nml | 3 +- examples/c302_C0_Muscles.net.nml | 3 +- examples/c302_C0_Oscillator.net.nml | 3 +- examples/c302_C0_Pharyngeal.net.nml | 3 +- examples/c302_C0_Social.net.nml | 3 +- examples/c302_C0_Syns.net.nml | 3 +- examples/c302_C1_Full.net.nml | 3 +- examples/c302_C1_IClamp.net.nml | 3 +- examples/c302_C1_Muscles.net.nml | 3 +- examples/c302_C1_Pharyngeal.net.nml | 3 +- examples/c302_C1_Social.net.nml | 3 +- examples/c302_C1_Syns.net.nml | 3 +- examples/c302_C2_Full.net.nml | 3 +- examples/c302_C2_IClamp.net.nml | 3 +- examples/c302_C2_Muscles.net.nml | 3 +- examples/c302_C2_Pharyngeal.net.nml | 3 +- examples/c302_C2_Social.net.nml | 3 +- examples/c302_C2_Syns.net.nml | 3 +- examples/c302_C_Full.net.nml | 3 +- examples/c302_C_IClamp.net.nml | 3 +- examples/c302_C_Muscles.net.nml | 3 +- examples/c302_C_Pharyngeal.net.nml | 3 +- examples/c302_C_Social.net.nml | 3 +- examples/c302_C_Syns.net.nml | 3 +- examples/c302_D1_Full.net.nml | 3 +- examples/c302_D1_IClamp.net.nml | 3 +- examples/c302_D1_Muscles.net.nml | 3 +- examples/c302_D1_Pharyngeal.net.nml | 3 +- examples/c302_D1_Social.net.nml | 3 +- examples/c302_D1_Syns.net.nml | 3 +- examples/c302_D_Full.net.nml | 3 +- examples/c302_D_IClamp.net.nml | 3 +- examples/c302_D_Muscles.net.nml | 3 +- examples/c302_D_Pharyngeal.net.nml | 3 +- examples/c302_D_Social.net.nml | 3 +- examples/c302_D_Syns.net.nml | 3 +- 99 files changed, 2417 insertions(+), 2300 deletions(-) diff --git a/c302/__init__.py b/c302/__init__.py index d914409c..e9299039 100755 --- a/c302/__init__.py +++ b/c302/__init__.py @@ -61,8 +61,14 @@ except Exception: from urllib.error import URLError # Python 3 + +from cect.Cells import BODY_WALL_MUSCLE_NAMES + DEFAULT_DATA_READER = "SpreadsheetDataReader" +# +# DEFAULT_DATA_READER = "cect.White_whole" # DEFAULT_DATA_READER = "cect.Cook2019HermReader" +DEFAULT_DATA_READER = "cect.SpreadsheetDataReader" FW_DATA_READER = "UpdatedSpreadsheetDataReader2" logging.basicConfig() @@ -478,7 +484,20 @@ def get_cell_muscle_names_and_connection(data_reader, test=False): all_muscles.remove("MANAL") if "MVULVA" in all_muscles: all_muscles.remove("MVULVA") - return mneurons, sorted(all_muscles), muscle_conns + + all_known_muscles = [] + if len(all_muscles) == 0: + all_known_muscles = BODY_WALL_MUSCLE_NAMES + else: + for m in all_muscles: + if m in BODY_WALL_MUSCLE_NAMES: + all_known_muscles.append(m) + + all_known_muscles = sorted(all_known_muscles) + + print(" --- Using for muscles: %s" % all_known_muscles) + + return mneurons, all_known_muscles, muscle_conns def is_cond_based_cell(params): diff --git a/examples/LEMS_c302_A_Full.xml b/examples/LEMS_c302_A_Full.xml index 07460fe6..f09f2a96 100644 --- a/examples/LEMS_c302_A_Full.xml +++ b/examples/LEMS_c302_A_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_A_IClamp.xml b/examples/LEMS_c302_A_IClamp.xml index 9da8ae3c..2fe151d1 100644 --- a/examples/LEMS_c302_A_IClamp.xml +++ b/examples/LEMS_c302_A_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -67,14 +68,14 @@ Parameters and setting used to generate this network: - - + + - + diff --git a/examples/LEMS_c302_A_Muscles.xml b/examples/LEMS_c302_A_Muscles.xml index 2f130113..49174ea2 100644 --- a/examples/LEMS_c302_A_Muscles.xml +++ b/examples/LEMS_c302_A_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -67,118 +68,118 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_A_Pharyngeal.xml b/examples/LEMS_c302_A_Pharyngeal.xml index 482c73fa..9f266abd 100644 --- a/examples/LEMS_c302_A_Pharyngeal.xml +++ b/examples/LEMS_c302_A_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -67,26 +68,26 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_A_Social.xml b/examples/LEMS_c302_A_Social.xml index e6563bd0..f76b6b5d 100644 --- a/examples/LEMS_c302_A_Social.xml +++ b/examples/LEMS_c302_A_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -67,13 +68,13 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_A_Syns.xml b/examples/LEMS_c302_A_Syns.xml index f366e3a4..7c9435f1 100644 --- a/examples/LEMS_c302_A_Syns.xml +++ b/examples/LEMS_c302_A_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2'] @@ -67,17 +68,17 @@ Parameters and setting used to generate this network: - - - - - + + + + + - + diff --git a/examples/LEMS_c302_B_Full.xml b/examples/LEMS_c302_B_Full.xml index 9cceec09..c2d5762c 100644 --- a/examples/LEMS_c302_B_Full.xml +++ b/examples/LEMS_c302_B_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_B_IClamp.xml b/examples/LEMS_c302_B_IClamp.xml index fe74361e..62e7d073 100644 --- a/examples/LEMS_c302_B_IClamp.xml +++ b/examples/LEMS_c302_B_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -68,27 +69,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_B_Muscles.xml b/examples/LEMS_c302_B_Muscles.xml index 63c89a7d..52fb9206 100644 --- a/examples/LEMS_c302_B_Muscles.xml +++ b/examples/LEMS_c302_B_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -68,235 +69,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_B_Pharyngeal.xml b/examples/LEMS_c302_B_Pharyngeal.xml index b83a70d2..2ca6dbc3 100644 --- a/examples/LEMS_c302_B_Pharyngeal.xml +++ b/examples/LEMS_c302_B_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -68,51 +69,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_B_Social.xml b/examples/LEMS_c302_B_Social.xml index d11d0649..55482e48 100644 --- a/examples/LEMS_c302_B_Social.xml +++ b/examples/LEMS_c302_B_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -68,25 +69,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_B_Syns.xml b/examples/LEMS_c302_B_Syns.xml index 008cf177..020e998f 100644 --- a/examples/LEMS_c302_B_Syns.xml +++ b/examples/LEMS_c302_B_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -68,37 +69,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/LEMS_c302_C0_Full.xml b/examples/LEMS_c302_C0_Full.xml index ec1074d2..2185e97a 100644 --- a/examples/LEMS_c302_C0_Full.xml +++ b/examples/LEMS_c302_C0_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C0_IClamp.xml b/examples/LEMS_c302_C0_IClamp.xml index 94fe5f1d..3784cb17 100644 --- a/examples/LEMS_c302_C0_IClamp.xml +++ b/examples/LEMS_c302_C0_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -81,27 +82,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_C0_Muscles.xml b/examples/LEMS_c302_C0_Muscles.xml index 8b55ddc7..5e93e6b5 100644 --- a/examples/LEMS_c302_C0_Muscles.xml +++ b/examples/LEMS_c302_C0_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -81,235 +82,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C0_Oscillator.xml b/examples/LEMS_c302_C0_Oscillator.xml index 0ceb0280..3e0af874 100644 --- a/examples/LEMS_c302_C0_Oscillator.xml +++ b/examples/LEMS_c302_C0_Oscillator.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -81,39 +82,39 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C0_Pharyngeal.xml b/examples/LEMS_c302_C0_Pharyngeal.xml index 0ad3d3c9..d78bfbf9 100644 --- a/examples/LEMS_c302_C0_Pharyngeal.xml +++ b/examples/LEMS_c302_C0_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -81,51 +82,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C0_Social.xml b/examples/LEMS_c302_C0_Social.xml index 9c096f89..0e9a101e 100644 --- a/examples/LEMS_c302_C0_Social.xml +++ b/examples/LEMS_c302_C0_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -81,25 +82,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_C0_Syns.xml b/examples/LEMS_c302_C0_Syns.xml index 0808b66f..d69b212d 100644 --- a/examples/LEMS_c302_C0_Syns.xml +++ b/examples/LEMS_c302_C0_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -81,37 +82,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/LEMS_c302_C1_Full.xml b/examples/LEMS_c302_C1_Full.xml index 31dce9df..e90a09f1 100644 --- a/examples/LEMS_c302_C1_Full.xml +++ b/examples/LEMS_c302_C1_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C1_IClamp.xml b/examples/LEMS_c302_C1_IClamp.xml index f0343454..df63f95d 100644 --- a/examples/LEMS_c302_C1_IClamp.xml +++ b/examples/LEMS_c302_C1_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -78,27 +79,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_C1_Muscles.xml b/examples/LEMS_c302_C1_Muscles.xml index 06a08de8..512a1b78 100644 --- a/examples/LEMS_c302_C1_Muscles.xml +++ b/examples/LEMS_c302_C1_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -78,235 +79,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C1_Pharyngeal.xml b/examples/LEMS_c302_C1_Pharyngeal.xml index e6bd212c..295fbbc0 100644 --- a/examples/LEMS_c302_C1_Pharyngeal.xml +++ b/examples/LEMS_c302_C1_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -78,51 +79,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C1_Social.xml b/examples/LEMS_c302_C1_Social.xml index b1079535..31c16734 100644 --- a/examples/LEMS_c302_C1_Social.xml +++ b/examples/LEMS_c302_C1_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -78,25 +79,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_C1_Syns.xml b/examples/LEMS_c302_C1_Syns.xml index f519738d..32b098fb 100644 --- a/examples/LEMS_c302_C1_Syns.xml +++ b/examples/LEMS_c302_C1_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -78,37 +79,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/LEMS_c302_C2_Full.xml b/examples/LEMS_c302_C2_Full.xml index 6a7ebb66..fd259de1 100644 --- a/examples/LEMS_c302_C2_Full.xml +++ b/examples/LEMS_c302_C2_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C2_IClamp.xml b/examples/LEMS_c302_C2_IClamp.xml index 78739892..3a42287a 100644 --- a/examples/LEMS_c302_C2_IClamp.xml +++ b/examples/LEMS_c302_C2_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -107,27 +108,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_C2_Muscles.xml b/examples/LEMS_c302_C2_Muscles.xml index 38171b07..3441156f 100644 --- a/examples/LEMS_c302_C2_Muscles.xml +++ b/examples/LEMS_c302_C2_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -107,235 +108,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C2_Pharyngeal.xml b/examples/LEMS_c302_C2_Pharyngeal.xml index 371fc219..28c3221d 100644 --- a/examples/LEMS_c302_C2_Pharyngeal.xml +++ b/examples/LEMS_c302_C2_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -107,51 +108,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C2_Social.xml b/examples/LEMS_c302_C2_Social.xml index 9d5965de..ef383f34 100644 --- a/examples/LEMS_c302_C2_Social.xml +++ b/examples/LEMS_c302_C2_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -107,25 +108,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_C2_Syns.xml b/examples/LEMS_c302_C2_Syns.xml index 58222da4..68a4bdc8 100644 --- a/examples/LEMS_c302_C2_Syns.xml +++ b/examples/LEMS_c302_C2_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -107,37 +108,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/LEMS_c302_C_Full.xml b/examples/LEMS_c302_C_Full.xml index e47691d4..c2319502 100644 --- a/examples/LEMS_c302_C_Full.xml +++ b/examples/LEMS_c302_C_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C_IClamp.xml b/examples/LEMS_c302_C_IClamp.xml index 14891293..b6715c67 100644 --- a/examples/LEMS_c302_C_IClamp.xml +++ b/examples/LEMS_c302_C_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -76,27 +77,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_C_Muscles.xml b/examples/LEMS_c302_C_Muscles.xml index dd480fdf..5c6ff6f5 100644 --- a/examples/LEMS_c302_C_Muscles.xml +++ b/examples/LEMS_c302_C_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -76,235 +77,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C_Pharyngeal.xml b/examples/LEMS_c302_C_Pharyngeal.xml index 3c79d0f9..d359e357 100644 --- a/examples/LEMS_c302_C_Pharyngeal.xml +++ b/examples/LEMS_c302_C_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -76,51 +77,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_C_Social.xml b/examples/LEMS_c302_C_Social.xml index 8896f360..6b77fb27 100644 --- a/examples/LEMS_c302_C_Social.xml +++ b/examples/LEMS_c302_C_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -76,25 +77,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_C_Syns.xml b/examples/LEMS_c302_C_Syns.xml index 9130fd93..070dae7e 100644 --- a/examples/LEMS_c302_C_Syns.xml +++ b/examples/LEMS_c302_C_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -76,37 +77,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/LEMS_c302_D1_Full.xml b/examples/LEMS_c302_D1_Full.xml index 3ad7adc7..1a194555 100644 --- a/examples/LEMS_c302_D1_Full.xml +++ b/examples/LEMS_c302_D1_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_D1_IClamp.xml b/examples/LEMS_c302_D1_IClamp.xml index db5c269a..2d077453 100644 --- a/examples/LEMS_c302_D1_IClamp.xml +++ b/examples/LEMS_c302_D1_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -88,27 +89,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_D1_Muscles.xml b/examples/LEMS_c302_D1_Muscles.xml index 21ad12f7..13a2e7a1 100644 --- a/examples/LEMS_c302_D1_Muscles.xml +++ b/examples/LEMS_c302_D1_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -352,235 +353,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_D1_Pharyngeal.xml b/examples/LEMS_c302_D1_Pharyngeal.xml index 37012cff..51317691 100644 --- a/examples/LEMS_c302_D1_Pharyngeal.xml +++ b/examples/LEMS_c302_D1_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -124,51 +125,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_D1_Social.xml b/examples/LEMS_c302_D1_Social.xml index 9b45f0be..12613ca4 100644 --- a/examples/LEMS_c302_D1_Social.xml +++ b/examples/LEMS_c302_D1_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -98,25 +99,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_D1_Syns.xml b/examples/LEMS_c302_D1_Syns.xml index f336eeeb..8f6eaff3 100644 --- a/examples/LEMS_c302_D1_Syns.xml +++ b/examples/LEMS_c302_D1_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -98,37 +99,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/LEMS_c302_D_Full.xml b/examples/LEMS_c302_D_Full.xml index 143574b8..b5cc2dfb 100644 --- a/examples/LEMS_c302_D_Full.xml +++ b/examples/LEMS_c302_D_Full.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_D_IClamp.xml b/examples/LEMS_c302_D_IClamp.xml index 2e054e18..a3ea44c7 100644 --- a/examples/LEMS_c302_D_IClamp.xml +++ b/examples/LEMS_c302_D_IClamp.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] @@ -81,27 +82,27 @@ Parameters and setting used to generate this network: - - + + - + - - + + - + diff --git a/examples/LEMS_c302_D_Muscles.xml b/examples/LEMS_c302_D_Muscles.xml index 06291faa..8eb9ff65 100644 --- a/examples/LEMS_c302_D_Muscles.xml +++ b/examples/LEMS_c302_D_Muscles.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] @@ -345,235 +346,235 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_D_Pharyngeal.xml b/examples/LEMS_c302_D_Pharyngeal.xml index a1db5a18..325d1ecf 100644 --- a/examples/LEMS_c302_D_Pharyngeal.xml +++ b/examples/LEMS_c302_D_Pharyngeal.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] @@ -117,51 +118,51 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/examples/LEMS_c302_D_Social.xml b/examples/LEMS_c302_D_Social.xml index 73fcf930..fd20cedf 100644 --- a/examples/LEMS_c302_D_Social.xml +++ b/examples/LEMS_c302_D_Social.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] @@ -91,25 +92,25 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - - - - - - - + + + + + + + diff --git a/examples/LEMS_c302_D_Syns.xml b/examples/LEMS_c302_D_Syns.xml index 228495d6..f41b9cc5 100644 --- a/examples/LEMS_c302_D_Syns.xml +++ b/examples/LEMS_c302_D_Syns.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] @@ -91,37 +92,37 @@ Parameters and setting used to generate this network: - - - - - - - + + + + + + + - + - - - - - - - + + + + + + + - + diff --git a/examples/c302_A_Full.net.nml b/examples/c302_A_Full.net.nml index d5906072..fff34042 100644 --- a/examples/c302_A_Full.net.nml +++ b/examples/c302_A_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_A_IClamp.net.nml b/examples/c302_A_IClamp.net.nml index bd17932d..9a5da33a 100644 --- a/examples/c302_A_IClamp.net.nml +++ b/examples/c302_A_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_A_Muscles.net.nml b/examples/c302_A_Muscles.net.nml index 13e72231..40405111 100644 --- a/examples/c302_A_Muscles.net.nml +++ b/examples/c302_A_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_A_Pharyngeal.net.nml b/examples/c302_A_Pharyngeal.net.nml index 025dc08d..316cd75d 100644 --- a/examples/c302_A_Pharyngeal.net.nml +++ b/examples/c302_A_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_A_Social.net.nml b/examples/c302_A_Social.net.nml index 4ccd5091..16cfc718 100644 --- a/examples/c302_A_Social.net.nml +++ b/examples/c302_A_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_A_Syns.net.nml b/examples/c302_A_Syns.net.nml index d55b43ee..c7913034 100644 --- a/examples/c302_A_Syns.net.nml +++ b/examples/c302_A_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2'] diff --git a/examples/c302_B_Full.net.nml b/examples/c302_B_Full.net.nml index 56156ddd..8f12f33b 100644 --- a/examples/c302_B_Full.net.nml +++ b/examples/c302_B_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_B_IClamp.net.nml b/examples/c302_B_IClamp.net.nml index 4c5eb55f..68eea3b0 100644 --- a/examples/c302_B_IClamp.net.nml +++ b/examples/c302_B_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_B_Muscles.net.nml b/examples/c302_B_Muscles.net.nml index a670b467..e6eabe3d 100644 --- a/examples/c302_B_Muscles.net.nml +++ b/examples/c302_B_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_B_Pharyngeal.net.nml b/examples/c302_B_Pharyngeal.net.nml index f3f31eff..c5efbda4 100644 --- a/examples/c302_B_Pharyngeal.net.nml +++ b/examples/c302_B_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_B_Social.net.nml b/examples/c302_B_Social.net.nml index 39328608..445cd4e9 100644 --- a/examples/c302_B_Social.net.nml +++ b/examples/c302_B_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_B_Syns.net.nml b/examples/c302_B_Syns.net.nml index 87855bc2..acf688a8 100644 --- a/examples/c302_B_Syns.net.nml +++ b/examples/c302_B_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C0_Full.net.nml b/examples/c302_C0_Full.net.nml index d572296c..6094e501 100644 --- a/examples/c302_C0_Full.net.nml +++ b/examples/c302_C0_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C0_IClamp.net.nml b/examples/c302_C0_IClamp.net.nml index e265ffdb..d2b23f7e 100644 --- a/examples/c302_C0_IClamp.net.nml +++ b/examples/c302_C0_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C0_Muscles.net.nml b/examples/c302_C0_Muscles.net.nml index 39514a08..15bfd1f4 100644 --- a/examples/c302_C0_Muscles.net.nml +++ b/examples/c302_C0_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C0_Oscillator.net.nml b/examples/c302_C0_Oscillator.net.nml index c2a47e90..3c2e1ea2 100644 --- a/examples/c302_C0_Oscillator.net.nml +++ b/examples/c302_C0_Oscillator.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C0_Pharyngeal.net.nml b/examples/c302_C0_Pharyngeal.net.nml index c7820059..2187d4fb 100644 --- a/examples/c302_C0_Pharyngeal.net.nml +++ b/examples/c302_C0_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C0_Social.net.nml b/examples/c302_C0_Social.net.nml index 5b9ff69c..dfa56ef4 100644 --- a/examples/c302_C0_Social.net.nml +++ b/examples/c302_C0_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C0_Syns.net.nml b/examples/c302_C0_Syns.net.nml index 2be2b11a..42fdad41 100644 --- a/examples/c302_C0_Syns.net.nml +++ b/examples/c302_C0_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C1_Full.net.nml b/examples/c302_C1_Full.net.nml index c042a1bd..9ded18b8 100644 --- a/examples/c302_C1_Full.net.nml +++ b/examples/c302_C1_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C1_IClamp.net.nml b/examples/c302_C1_IClamp.net.nml index 96082f67..1eb5cff0 100644 --- a/examples/c302_C1_IClamp.net.nml +++ b/examples/c302_C1_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C1_Muscles.net.nml b/examples/c302_C1_Muscles.net.nml index 4c5faec4..69cbc0c9 100644 --- a/examples/c302_C1_Muscles.net.nml +++ b/examples/c302_C1_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C1_Pharyngeal.net.nml b/examples/c302_C1_Pharyngeal.net.nml index 649db9dd..e125af32 100644 --- a/examples/c302_C1_Pharyngeal.net.nml +++ b/examples/c302_C1_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C1_Social.net.nml b/examples/c302_C1_Social.net.nml index d59bc4a9..2e9a31aa 100644 --- a/examples/c302_C1_Social.net.nml +++ b/examples/c302_C1_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C1_Syns.net.nml b/examples/c302_C1_Syns.net.nml index 7c96c4bb..3412db04 100644 --- a/examples/c302_C1_Syns.net.nml +++ b/examples/c302_C1_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C2_Full.net.nml b/examples/c302_C2_Full.net.nml index fec8509e..bc7ab0c7 100644 --- a/examples/c302_C2_Full.net.nml +++ b/examples/c302_C2_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C2_IClamp.net.nml b/examples/c302_C2_IClamp.net.nml index 866a291f..5acbbb5f 100644 --- a/examples/c302_C2_IClamp.net.nml +++ b/examples/c302_C2_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C2_Muscles.net.nml b/examples/c302_C2_Muscles.net.nml index b7868360..f25bd410 100644 --- a/examples/c302_C2_Muscles.net.nml +++ b/examples/c302_C2_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C2_Pharyngeal.net.nml b/examples/c302_C2_Pharyngeal.net.nml index 6b70b13c..fb19e07b 100644 --- a/examples/c302_C2_Pharyngeal.net.nml +++ b/examples/c302_C2_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C2_Social.net.nml b/examples/c302_C2_Social.net.nml index b33af2bb..66cc9e7f 100644 --- a/examples/c302_C2_Social.net.nml +++ b/examples/c302_C2_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C2_Syns.net.nml b/examples/c302_C2_Syns.net.nml index 3c8b2372..d3b22ad1 100644 --- a/examples/c302_C2_Syns.net.nml +++ b/examples/c302_C2_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C_Full.net.nml b/examples/c302_C_Full.net.nml index ce3a079e..d00d72ad 100644 --- a/examples/c302_C_Full.net.nml +++ b/examples/c302_C_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C_IClamp.net.nml b/examples/c302_C_IClamp.net.nml index 4ae070f0..c0236082 100644 --- a/examples/c302_C_IClamp.net.nml +++ b/examples/c302_C_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C_Muscles.net.nml b/examples/c302_C_Muscles.net.nml index 550d6b9b..b0d848a9 100644 --- a/examples/c302_C_Muscles.net.nml +++ b/examples/c302_C_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C_Pharyngeal.net.nml b/examples/c302_C_Pharyngeal.net.nml index 70ea7dc0..399f08e5 100644 --- a/examples/c302_C_Pharyngeal.net.nml +++ b/examples/c302_C_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C_Social.net.nml b/examples/c302_C_Social.net.nml index f7419ac9..b5b68141 100644 --- a/examples/c302_C_Social.net.nml +++ b/examples/c302_C_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C_Syns.net.nml b/examples/c302_C_Syns.net.nml index 8d0ed82b..621e4754 100644 --- a/examples/c302_C_Syns.net.nml +++ b/examples/c302_C_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_D1_Full.net.nml b/examples/c302_D1_Full.net.nml index bb9e0e5f..f40a41fb 100644 --- a/examples/c302_D1_Full.net.nml +++ b/examples/c302_D1_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_D1_IClamp.net.nml b/examples/c302_D1_IClamp.net.nml index c52a745e..06ab2ce5 100644 --- a/examples/c302_D1_IClamp.net.nml +++ b/examples/c302_D1_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_D1_Muscles.net.nml b/examples/c302_D1_Muscles.net.nml index 82f2c805..b3f2e05f 100644 --- a/examples/c302_D1_Muscles.net.nml +++ b/examples/c302_D1_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_D1_Pharyngeal.net.nml b/examples/c302_D1_Pharyngeal.net.nml index 84050de4..80ff864a 100644 --- a/examples/c302_D1_Pharyngeal.net.nml +++ b/examples/c302_D1_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_D1_Social.net.nml b/examples/c302_D1_Social.net.nml index 88614266..a790ee6a 100644 --- a/examples/c302_D1_Social.net.nml +++ b/examples/c302_D1_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_D1_Syns.net.nml b/examples/c302_D1_Syns.net.nml index 54ec43c7..74bf0ef3 100644 --- a/examples/c302_D1_Syns.net.nml +++ b/examples/c302_D1_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_D_Full.net.nml b/examples/c302_D_Full.net.nml index 4e4cea23..0e385c0e 100644 --- a/examples/c302_D_Full.net.nml +++ b/examples/c302_D_Full.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_D_IClamp.net.nml b/examples/c302_D_IClamp.net.nml index 282f8301..60cc5dc3 100644 --- a/examples/c302_D_IClamp.net.nml +++ b/examples/c302_D_IClamp.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_D_Muscles.net.nml b/examples/c302_D_Muscles.net.nml index ec00153c..71d2b6ba 100644 --- a/examples/c302_D_Muscles.net.nml +++ b/examples/c302_D_Muscles.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_D_Pharyngeal.net.nml b/examples/c302_D_Pharyngeal.net.nml index bcc7edcb..4730fea4 100644 --- a/examples/c302_D_Pharyngeal.net.nml +++ b/examples/c302_D_Pharyngeal.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_D_Social.net.nml b/examples/c302_D_Social.net.nml index 8e63f4f7..84c00e76 100644 --- a/examples/c302_D_Social.net.nml +++ b/examples/c302_D_Social.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_D_Syns.net.nml b/examples/c302_D_Syns.net.nml index 4ef1863e..7887a511 100644 --- a/examples/c302_D_Syns.net.nml +++ b/examples/c302_D_Syns.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: SpreadsheetDataReader + Data reader: cect.SpreadsheetDataReader c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] From 332a58a0332eefa87bf8a8a24b4bbdd04ca0c2b5 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 15 Jan 2025 18:37:58 +0000 Subject: [PATCH 04/18] Test with cect.UpdatedSpreadsheetDataReader2 --- c302/__init__.py | 2 +- examples/LEMS_c302_C2_FW.xml | 539 ++++++++++++++++++----------------- examples/c302_C2_FW.net.nml | 3 +- 3 files changed, 273 insertions(+), 271 deletions(-) diff --git a/c302/__init__.py b/c302/__init__.py index e9299039..18c3e26f 100755 --- a/c302/__init__.py +++ b/c302/__init__.py @@ -69,7 +69,7 @@ # DEFAULT_DATA_READER = "cect.White_whole" # DEFAULT_DATA_READER = "cect.Cook2019HermReader" DEFAULT_DATA_READER = "cect.SpreadsheetDataReader" -FW_DATA_READER = "UpdatedSpreadsheetDataReader2" +FW_DATA_READER = "cect.UpdatedSpreadsheetDataReader2" logging.basicConfig() diff --git a/examples/LEMS_c302_C2_FW.xml b/examples/LEMS_c302_C2_FW.xml index 8c1efb9d..f8365733 100644 --- a/examples/LEMS_c302_C2_FW.xml +++ b/examples/LEMS_c302_C2_FW.xml @@ -5,8 +5,9 @@ Parameters and setting used to generate this network: - Data reader: UpdatedSpreadsheetDataReader2 + Data reader: cect.UpdatedSpreadsheetDataReader2 c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AVBL', 'AVBR', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'VD1', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'VD10', 'VD11', 'VD12', 'VD13', 'VB1', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VB10', 'VB11', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6'] @@ -454,289 +455,289 @@ Parameters and setting used to generate this network: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/examples/c302_C2_FW.net.nml b/examples/c302_C2_FW.net.nml index 70e6739e..2c9877c2 100644 --- a/examples/c302_C2_FW.net.nml +++ b/examples/c302_C2_FW.net.nml @@ -3,8 +3,9 @@ Parameters and setting used to generate this network: - Data reader: UpdatedSpreadsheetDataReader2 + Data reader: cect.UpdatedSpreadsheetDataReader2 c302 version: 0.9.1 + cect version: 0.2.2 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AVBL', 'AVBR', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'VD1', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'VD10', 'VD11', 'VD12', 'VD13', 'VB1', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VB10', 'VB11', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6'] From a6d1eb47a6ca212119eae1f0a74a6b3c701ea15f Mon Sep 17 00:00:00 2001 From: pgleeson Date: Tue, 21 Jan 2025 15:13:58 +0000 Subject: [PATCH 05/18] To v0.10.0 --- c302/__version__.py | 2 +- examples/LEMS_c302_A_Full.xml | 4 ++-- examples/LEMS_c302_A_IClamp.xml | 4 ++-- examples/LEMS_c302_A_Muscles.xml | 4 ++-- examples/LEMS_c302_A_Oscillator.xml | 4 ++-- examples/LEMS_c302_A_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_A_Social.xml | 4 ++-- examples/LEMS_c302_A_Syns.xml | 4 ++-- examples/LEMS_c302_B_Full.xml | 4 ++-- examples/LEMS_c302_B_IClamp.xml | 4 ++-- examples/LEMS_c302_B_Muscles.xml | 4 ++-- examples/LEMS_c302_B_Oscillator.xml | 4 ++-- examples/LEMS_c302_B_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_B_Social.xml | 4 ++-- examples/LEMS_c302_B_Syns.xml | 4 ++-- examples/LEMS_c302_C0_Full.xml | 4 ++-- examples/LEMS_c302_C0_IClamp.xml | 4 ++-- examples/LEMS_c302_C0_Muscles.xml | 4 ++-- examples/LEMS_c302_C0_Oscillator.xml | 4 ++-- examples/LEMS_c302_C0_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_C0_Social.xml | 4 ++-- examples/LEMS_c302_C0_Syns.xml | 4 ++-- examples/LEMS_c302_C1_Full.xml | 4 ++-- examples/LEMS_c302_C1_IClamp.xml | 4 ++-- examples/LEMS_c302_C1_Muscles.xml | 4 ++-- examples/LEMS_c302_C1_Oscillator.xml | 4 ++-- examples/LEMS_c302_C1_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_C1_Social.xml | 4 ++-- examples/LEMS_c302_C1_Syns.xml | 4 ++-- examples/LEMS_c302_C2_FW.xml | 4 ++-- examples/LEMS_c302_C2_Full.xml | 4 ++-- examples/LEMS_c302_C2_IClamp.xml | 4 ++-- examples/LEMS_c302_C2_Muscles.xml | 4 ++-- examples/LEMS_c302_C2_Oscillator.xml | 4 ++-- examples/LEMS_c302_C2_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_C2_Social.xml | 4 ++-- examples/LEMS_c302_C2_Syns.xml | 4 ++-- examples/LEMS_c302_C_Full.xml | 4 ++-- examples/LEMS_c302_C_IClamp.xml | 4 ++-- examples/LEMS_c302_C_Muscles.xml | 4 ++-- examples/LEMS_c302_C_Oscillator.xml | 4 ++-- examples/LEMS_c302_C_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_C_Social.xml | 4 ++-- examples/LEMS_c302_C_Syns.xml | 4 ++-- examples/LEMS_c302_D1_Full.xml | 4 ++-- examples/LEMS_c302_D1_IClamp.xml | 4 ++-- examples/LEMS_c302_D1_Muscles.xml | 4 ++-- examples/LEMS_c302_D1_Oscillator.xml | 4 ++-- examples/LEMS_c302_D1_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_D1_Social.xml | 4 ++-- examples/LEMS_c302_D1_Syns.xml | 4 ++-- examples/LEMS_c302_D_Full.xml | 4 ++-- examples/LEMS_c302_D_IClamp.xml | 4 ++-- examples/LEMS_c302_D_Muscles.xml | 4 ++-- examples/LEMS_c302_D_Oscillator.xml | 4 ++-- examples/LEMS_c302_D_Pharyngeal.xml | 4 ++-- examples/LEMS_c302_D_Social.xml | 4 ++-- examples/LEMS_c302_D_Syns.xml | 4 ++-- examples/c302_A_Full.net.nml | 4 ++-- examples/c302_A_IClamp.net.nml | 4 ++-- examples/c302_A_Muscles.net.nml | 4 ++-- examples/c302_A_Oscillator.net.nml | 4 ++-- examples/c302_A_Pharyngeal.net.nml | 4 ++-- examples/c302_A_Social.net.nml | 4 ++-- examples/c302_A_Syns.net.nml | 4 ++-- examples/c302_B_Full.net.nml | 4 ++-- examples/c302_B_IClamp.net.nml | 4 ++-- examples/c302_B_Muscles.net.nml | 4 ++-- examples/c302_B_Oscillator.net.nml | 4 ++-- examples/c302_B_Pharyngeal.net.nml | 4 ++-- examples/c302_B_Social.net.nml | 4 ++-- examples/c302_B_Syns.net.nml | 4 ++-- examples/c302_C0_Full.net.nml | 4 ++-- examples/c302_C0_IClamp.net.nml | 4 ++-- examples/c302_C0_Muscles.net.nml | 4 ++-- examples/c302_C0_Oscillator.net.nml | 4 ++-- examples/c302_C0_Pharyngeal.net.nml | 4 ++-- examples/c302_C0_Social.net.nml | 4 ++-- examples/c302_C0_Syns.net.nml | 4 ++-- examples/c302_C1_Full.net.nml | 4 ++-- examples/c302_C1_IClamp.net.nml | 4 ++-- examples/c302_C1_Muscles.net.nml | 4 ++-- examples/c302_C1_Oscillator.net.nml | 4 ++-- examples/c302_C1_Pharyngeal.net.nml | 4 ++-- examples/c302_C1_Social.net.nml | 4 ++-- examples/c302_C1_Syns.net.nml | 4 ++-- examples/c302_C2_FW.net.nml | 4 ++-- examples/c302_C2_Full.net.nml | 4 ++-- examples/c302_C2_IClamp.net.nml | 4 ++-- examples/c302_C2_Muscles.net.nml | 4 ++-- examples/c302_C2_Oscillator.net.nml | 4 ++-- examples/c302_C2_Pharyngeal.net.nml | 4 ++-- examples/c302_C2_Social.net.nml | 4 ++-- examples/c302_C2_Syns.net.nml | 4 ++-- examples/c302_C_Full.net.nml | 4 ++-- examples/c302_C_IClamp.net.nml | 4 ++-- examples/c302_C_Muscles.net.nml | 4 ++-- examples/c302_C_Oscillator.net.nml | 4 ++-- examples/c302_C_Pharyngeal.net.nml | 4 ++-- examples/c302_C_Social.net.nml | 4 ++-- examples/c302_C_Syns.net.nml | 4 ++-- examples/c302_D1_Full.net.nml | 4 ++-- examples/c302_D1_IClamp.net.nml | 4 ++-- examples/c302_D1_Muscles.net.nml | 4 ++-- examples/c302_D1_Oscillator.net.nml | 4 ++-- examples/c302_D1_Pharyngeal.net.nml | 4 ++-- examples/c302_D1_Social.net.nml | 4 ++-- examples/c302_D1_Syns.net.nml | 4 ++-- examples/c302_D_Full.net.nml | 4 ++-- examples/c302_D_IClamp.net.nml | 4 ++-- examples/c302_D_Muscles.net.nml | 4 ++-- examples/c302_D_Oscillator.net.nml | 4 ++-- examples/c302_D_Pharyngeal.net.nml | 4 ++-- examples/c302_D_Social.net.nml | 4 ++-- examples/c302_D_Syns.net.nml | 4 ++-- 115 files changed, 229 insertions(+), 229 deletions(-) diff --git a/c302/__version__.py b/c302/__version__.py index d69d16e9..61fb31ca 100644 --- a/c302/__version__.py +++ b/c302/__version__.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "0.10.0" diff --git a/examples/LEMS_c302_A_Full.xml b/examples/LEMS_c302_A_Full.xml index f09f2a96..23af1ca9 100644 --- a/examples/LEMS_c302_A_Full.xml +++ b/examples/LEMS_c302_A_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_A_IClamp.xml b/examples/LEMS_c302_A_IClamp.xml index 2fe151d1..aa0d5ec1 100644 --- a/examples/LEMS_c302_A_IClamp.xml +++ b/examples/LEMS_c302_A_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_A_Muscles.xml b/examples/LEMS_c302_A_Muscles.xml index 49174ea2..47e445f0 100644 --- a/examples/LEMS_c302_A_Muscles.xml +++ b/examples/LEMS_c302_A_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_A_Oscillator.xml b/examples/LEMS_c302_A_Oscillator.xml index 77e6db30..a87070ac 100644 --- a/examples/LEMS_c302_A_Oscillator.xml +++ b/examples/LEMS_c302_A_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_A_Pharyngeal.xml b/examples/LEMS_c302_A_Pharyngeal.xml index 9f266abd..ce6e2a81 100644 --- a/examples/LEMS_c302_A_Pharyngeal.xml +++ b/examples/LEMS_c302_A_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_A_Social.xml b/examples/LEMS_c302_A_Social.xml index f76b6b5d..48d6a973 100644 --- a/examples/LEMS_c302_A_Social.xml +++ b/examples/LEMS_c302_A_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_A_Syns.xml b/examples/LEMS_c302_A_Syns.xml index 7c9435f1..5422694b 100644 --- a/examples/LEMS_c302_A_Syns.xml +++ b/examples/LEMS_c302_A_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2'] diff --git a/examples/LEMS_c302_B_Full.xml b/examples/LEMS_c302_B_Full.xml index c2d5762c..bd0df7f3 100644 --- a/examples/LEMS_c302_B_Full.xml +++ b/examples/LEMS_c302_B_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_B_IClamp.xml b/examples/LEMS_c302_B_IClamp.xml index 62e7d073..f378d43e 100644 --- a/examples/LEMS_c302_B_IClamp.xml +++ b/examples/LEMS_c302_B_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_B_Muscles.xml b/examples/LEMS_c302_B_Muscles.xml index 52fb9206..3d23d9df 100644 --- a/examples/LEMS_c302_B_Muscles.xml +++ b/examples/LEMS_c302_B_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_B_Oscillator.xml b/examples/LEMS_c302_B_Oscillator.xml index e363a7bf..7010c007 100644 --- a/examples/LEMS_c302_B_Oscillator.xml +++ b/examples/LEMS_c302_B_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_B_Pharyngeal.xml b/examples/LEMS_c302_B_Pharyngeal.xml index 2ca6dbc3..587e32a6 100644 --- a/examples/LEMS_c302_B_Pharyngeal.xml +++ b/examples/LEMS_c302_B_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_B_Social.xml b/examples/LEMS_c302_B_Social.xml index 55482e48..694455f3 100644 --- a/examples/LEMS_c302_B_Social.xml +++ b/examples/LEMS_c302_B_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_B_Syns.xml b/examples/LEMS_c302_B_Syns.xml index 020e998f..7e474c26 100644 --- a/examples/LEMS_c302_B_Syns.xml +++ b/examples/LEMS_c302_B_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C0_Full.xml b/examples/LEMS_c302_C0_Full.xml index 2185e97a..16ca2f94 100644 --- a/examples/LEMS_c302_C0_Full.xml +++ b/examples/LEMS_c302_C0_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C0_IClamp.xml b/examples/LEMS_c302_C0_IClamp.xml index 3784cb17..7df80155 100644 --- a/examples/LEMS_c302_C0_IClamp.xml +++ b/examples/LEMS_c302_C0_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C0_Muscles.xml b/examples/LEMS_c302_C0_Muscles.xml index 5e93e6b5..cd62a208 100644 --- a/examples/LEMS_c302_C0_Muscles.xml +++ b/examples/LEMS_c302_C0_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C0_Oscillator.xml b/examples/LEMS_c302_C0_Oscillator.xml index 3e0af874..526b145d 100644 --- a/examples/LEMS_c302_C0_Oscillator.xml +++ b/examples/LEMS_c302_C0_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C0_Pharyngeal.xml b/examples/LEMS_c302_C0_Pharyngeal.xml index d78bfbf9..826dd1c2 100644 --- a/examples/LEMS_c302_C0_Pharyngeal.xml +++ b/examples/LEMS_c302_C0_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C0_Social.xml b/examples/LEMS_c302_C0_Social.xml index 0e9a101e..1531d079 100644 --- a/examples/LEMS_c302_C0_Social.xml +++ b/examples/LEMS_c302_C0_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C0_Syns.xml b/examples/LEMS_c302_C0_Syns.xml index d69b212d..e867d85f 100644 --- a/examples/LEMS_c302_C0_Syns.xml +++ b/examples/LEMS_c302_C0_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C1_Full.xml b/examples/LEMS_c302_C1_Full.xml index e90a09f1..beddd23f 100644 --- a/examples/LEMS_c302_C1_Full.xml +++ b/examples/LEMS_c302_C1_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C1_IClamp.xml b/examples/LEMS_c302_C1_IClamp.xml index df63f95d..463a4d6c 100644 --- a/examples/LEMS_c302_C1_IClamp.xml +++ b/examples/LEMS_c302_C1_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C1_Muscles.xml b/examples/LEMS_c302_C1_Muscles.xml index 512a1b78..dc800b20 100644 --- a/examples/LEMS_c302_C1_Muscles.xml +++ b/examples/LEMS_c302_C1_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C1_Oscillator.xml b/examples/LEMS_c302_C1_Oscillator.xml index 52de272b..82b77bf4 100644 --- a/examples/LEMS_c302_C1_Oscillator.xml +++ b/examples/LEMS_c302_C1_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C1_Pharyngeal.xml b/examples/LEMS_c302_C1_Pharyngeal.xml index 295fbbc0..43ab7dd5 100644 --- a/examples/LEMS_c302_C1_Pharyngeal.xml +++ b/examples/LEMS_c302_C1_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C1_Social.xml b/examples/LEMS_c302_C1_Social.xml index 31c16734..5decdd22 100644 --- a/examples/LEMS_c302_C1_Social.xml +++ b/examples/LEMS_c302_C1_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C1_Syns.xml b/examples/LEMS_c302_C1_Syns.xml index 32b098fb..be44ed8b 100644 --- a/examples/LEMS_c302_C1_Syns.xml +++ b/examples/LEMS_c302_C1_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C2_FW.xml b/examples/LEMS_c302_C2_FW.xml index f8365733..0dc60790 100644 --- a/examples/LEMS_c302_C2_FW.xml +++ b/examples/LEMS_c302_C2_FW.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.UpdatedSpreadsheetDataReader2 - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AVBL', 'AVBR', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'VD1', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'VD10', 'VD11', 'VD12', 'VD13', 'VB1', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VB10', 'VB11', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6'] diff --git a/examples/LEMS_c302_C2_Full.xml b/examples/LEMS_c302_C2_Full.xml index fd259de1..a78355a1 100644 --- a/examples/LEMS_c302_C2_Full.xml +++ b/examples/LEMS_c302_C2_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C2_IClamp.xml b/examples/LEMS_c302_C2_IClamp.xml index 3a42287a..c398fdf6 100644 --- a/examples/LEMS_c302_C2_IClamp.xml +++ b/examples/LEMS_c302_C2_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C2_Muscles.xml b/examples/LEMS_c302_C2_Muscles.xml index 3441156f..53752714 100644 --- a/examples/LEMS_c302_C2_Muscles.xml +++ b/examples/LEMS_c302_C2_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C2_Oscillator.xml b/examples/LEMS_c302_C2_Oscillator.xml index 25268508..e21b5d5e 100644 --- a/examples/LEMS_c302_C2_Oscillator.xml +++ b/examples/LEMS_c302_C2_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C2_Pharyngeal.xml b/examples/LEMS_c302_C2_Pharyngeal.xml index 28c3221d..7b065e86 100644 --- a/examples/LEMS_c302_C2_Pharyngeal.xml +++ b/examples/LEMS_c302_C2_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C2_Social.xml b/examples/LEMS_c302_C2_Social.xml index ef383f34..58459754 100644 --- a/examples/LEMS_c302_C2_Social.xml +++ b/examples/LEMS_c302_C2_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C2_Syns.xml b/examples/LEMS_c302_C2_Syns.xml index 68a4bdc8..2b165b2a 100644 --- a/examples/LEMS_c302_C2_Syns.xml +++ b/examples/LEMS_c302_C2_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C_Full.xml b/examples/LEMS_c302_C_Full.xml index c2319502..643a5be6 100644 --- a/examples/LEMS_c302_C_Full.xml +++ b/examples/LEMS_c302_C_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C_IClamp.xml b/examples/LEMS_c302_C_IClamp.xml index b6715c67..4e887022 100644 --- a/examples/LEMS_c302_C_IClamp.xml +++ b/examples/LEMS_c302_C_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C_Muscles.xml b/examples/LEMS_c302_C_Muscles.xml index 5c6ff6f5..8355513e 100644 --- a/examples/LEMS_c302_C_Muscles.xml +++ b/examples/LEMS_c302_C_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C_Oscillator.xml b/examples/LEMS_c302_C_Oscillator.xml index b48c0ab1..23011bee 100644 --- a/examples/LEMS_c302_C_Oscillator.xml +++ b/examples/LEMS_c302_C_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C_Pharyngeal.xml b/examples/LEMS_c302_C_Pharyngeal.xml index d359e357..f287a10f 100644 --- a/examples/LEMS_c302_C_Pharyngeal.xml +++ b/examples/LEMS_c302_C_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C_Social.xml b/examples/LEMS_c302_C_Social.xml index 6b77fb27..5844a855 100644 --- a/examples/LEMS_c302_C_Social.xml +++ b/examples/LEMS_c302_C_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C_Syns.xml b/examples/LEMS_c302_C_Syns.xml index 070dae7e..8a07c01d 100644 --- a/examples/LEMS_c302_C_Syns.xml +++ b/examples/LEMS_c302_C_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_D1_Full.xml b/examples/LEMS_c302_D1_Full.xml index 1a194555..996e259f 100644 --- a/examples/LEMS_c302_D1_Full.xml +++ b/examples/LEMS_c302_D1_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_D1_IClamp.xml b/examples/LEMS_c302_D1_IClamp.xml index 2d077453..cdf6ebf0 100644 --- a/examples/LEMS_c302_D1_IClamp.xml +++ b/examples/LEMS_c302_D1_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_D1_Muscles.xml b/examples/LEMS_c302_D1_Muscles.xml index 13a2e7a1..1299150d 100644 --- a/examples/LEMS_c302_D1_Muscles.xml +++ b/examples/LEMS_c302_D1_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_D1_Oscillator.xml b/examples/LEMS_c302_D1_Oscillator.xml index 4d1f0215..7628fcd3 100644 --- a/examples/LEMS_c302_D1_Oscillator.xml +++ b/examples/LEMS_c302_D1_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_D1_Pharyngeal.xml b/examples/LEMS_c302_D1_Pharyngeal.xml index 51317691..2b9870ab 100644 --- a/examples/LEMS_c302_D1_Pharyngeal.xml +++ b/examples/LEMS_c302_D1_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_D1_Social.xml b/examples/LEMS_c302_D1_Social.xml index 12613ca4..ef088ab1 100644 --- a/examples/LEMS_c302_D1_Social.xml +++ b/examples/LEMS_c302_D1_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_D1_Syns.xml b/examples/LEMS_c302_D1_Syns.xml index 8f6eaff3..293080b2 100644 --- a/examples/LEMS_c302_D1_Syns.xml +++ b/examples/LEMS_c302_D1_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_D_Full.xml b/examples/LEMS_c302_D_Full.xml index b5cc2dfb..470255e9 100644 --- a/examples/LEMS_c302_D_Full.xml +++ b/examples/LEMS_c302_D_Full.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_D_IClamp.xml b/examples/LEMS_c302_D_IClamp.xml index a3ea44c7..8b55da53 100644 --- a/examples/LEMS_c302_D_IClamp.xml +++ b/examples/LEMS_c302_D_IClamp.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_D_Muscles.xml b/examples/LEMS_c302_D_Muscles.xml index 8eb9ff65..b9b7c4a3 100644 --- a/examples/LEMS_c302_D_Muscles.xml +++ b/examples/LEMS_c302_D_Muscles.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_D_Oscillator.xml b/examples/LEMS_c302_D_Oscillator.xml index c6f8e31b..eb7d15c2 100644 --- a/examples/LEMS_c302_D_Oscillator.xml +++ b/examples/LEMS_c302_D_Oscillator.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_D_Pharyngeal.xml b/examples/LEMS_c302_D_Pharyngeal.xml index 325d1ecf..63767fbd 100644 --- a/examples/LEMS_c302_D_Pharyngeal.xml +++ b/examples/LEMS_c302_D_Pharyngeal.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_D_Social.xml b/examples/LEMS_c302_D_Social.xml index fd20cedf..279bdcc0 100644 --- a/examples/LEMS_c302_D_Social.xml +++ b/examples/LEMS_c302_D_Social.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_D_Syns.xml b/examples/LEMS_c302_D_Syns.xml index f41b9cc5..a218140f 100644 --- a/examples/LEMS_c302_D_Syns.xml +++ b/examples/LEMS_c302_D_Syns.xml @@ -6,8 +6,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_A_Full.net.nml b/examples/c302_A_Full.net.nml index fff34042..7d3f8fad 100644 --- a/examples/c302_A_Full.net.nml +++ b/examples/c302_A_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_A_IClamp.net.nml b/examples/c302_A_IClamp.net.nml index 9a5da33a..8231ace7 100644 --- a/examples/c302_A_IClamp.net.nml +++ b/examples/c302_A_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_A_Muscles.net.nml b/examples/c302_A_Muscles.net.nml index 40405111..6cddbf41 100644 --- a/examples/c302_A_Muscles.net.nml +++ b/examples/c302_A_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_A_Oscillator.net.nml b/examples/c302_A_Oscillator.net.nml index cbf59c55..ad80de88 100644 --- a/examples/c302_A_Oscillator.net.nml +++ b/examples/c302_A_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_A_Pharyngeal.net.nml b/examples/c302_A_Pharyngeal.net.nml index 316cd75d..2b1b4fa5 100644 --- a/examples/c302_A_Pharyngeal.net.nml +++ b/examples/c302_A_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_A_Social.net.nml b/examples/c302_A_Social.net.nml index 16cfc718..5dc41940 100644 --- a/examples/c302_A_Social.net.nml +++ b/examples/c302_A_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_A_Syns.net.nml b/examples/c302_A_Syns.net.nml index c7913034..c34577f2 100644 --- a/examples/c302_A_Syns.net.nml +++ b/examples/c302_A_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2'] diff --git a/examples/c302_B_Full.net.nml b/examples/c302_B_Full.net.nml index 8f12f33b..25bed730 100644 --- a/examples/c302_B_Full.net.nml +++ b/examples/c302_B_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_B_IClamp.net.nml b/examples/c302_B_IClamp.net.nml index 68eea3b0..b59bdbbe 100644 --- a/examples/c302_B_IClamp.net.nml +++ b/examples/c302_B_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_B_Muscles.net.nml b/examples/c302_B_Muscles.net.nml index e6eabe3d..d7c31d36 100644 --- a/examples/c302_B_Muscles.net.nml +++ b/examples/c302_B_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_B_Oscillator.net.nml b/examples/c302_B_Oscillator.net.nml index 462e705e..f5368b04 100644 --- a/examples/c302_B_Oscillator.net.nml +++ b/examples/c302_B_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_B_Pharyngeal.net.nml b/examples/c302_B_Pharyngeal.net.nml index c5efbda4..3dc791d6 100644 --- a/examples/c302_B_Pharyngeal.net.nml +++ b/examples/c302_B_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_B_Social.net.nml b/examples/c302_B_Social.net.nml index 445cd4e9..0dc0951c 100644 --- a/examples/c302_B_Social.net.nml +++ b/examples/c302_B_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_B_Syns.net.nml b/examples/c302_B_Syns.net.nml index acf688a8..832bb6e8 100644 --- a/examples/c302_B_Syns.net.nml +++ b/examples/c302_B_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C0_Full.net.nml b/examples/c302_C0_Full.net.nml index 6094e501..7210bb3a 100644 --- a/examples/c302_C0_Full.net.nml +++ b/examples/c302_C0_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C0_IClamp.net.nml b/examples/c302_C0_IClamp.net.nml index d2b23f7e..ea9d7fd9 100644 --- a/examples/c302_C0_IClamp.net.nml +++ b/examples/c302_C0_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C0_Muscles.net.nml b/examples/c302_C0_Muscles.net.nml index 15bfd1f4..84834f64 100644 --- a/examples/c302_C0_Muscles.net.nml +++ b/examples/c302_C0_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C0_Oscillator.net.nml b/examples/c302_C0_Oscillator.net.nml index 3c2e1ea2..851d69d9 100644 --- a/examples/c302_C0_Oscillator.net.nml +++ b/examples/c302_C0_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C0_Pharyngeal.net.nml b/examples/c302_C0_Pharyngeal.net.nml index 2187d4fb..86218f66 100644 --- a/examples/c302_C0_Pharyngeal.net.nml +++ b/examples/c302_C0_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C0_Social.net.nml b/examples/c302_C0_Social.net.nml index dfa56ef4..691b7f5a 100644 --- a/examples/c302_C0_Social.net.nml +++ b/examples/c302_C0_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C0_Syns.net.nml b/examples/c302_C0_Syns.net.nml index 42fdad41..900cc3ba 100644 --- a/examples/c302_C0_Syns.net.nml +++ b/examples/c302_C0_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C1_Full.net.nml b/examples/c302_C1_Full.net.nml index 9ded18b8..7e31c00f 100644 --- a/examples/c302_C1_Full.net.nml +++ b/examples/c302_C1_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C1_IClamp.net.nml b/examples/c302_C1_IClamp.net.nml index 1eb5cff0..3b403497 100644 --- a/examples/c302_C1_IClamp.net.nml +++ b/examples/c302_C1_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C1_Muscles.net.nml b/examples/c302_C1_Muscles.net.nml index 69cbc0c9..a4058d47 100644 --- a/examples/c302_C1_Muscles.net.nml +++ b/examples/c302_C1_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C1_Oscillator.net.nml b/examples/c302_C1_Oscillator.net.nml index 8e65f836..2e724b4b 100644 --- a/examples/c302_C1_Oscillator.net.nml +++ b/examples/c302_C1_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C1_Pharyngeal.net.nml b/examples/c302_C1_Pharyngeal.net.nml index e125af32..c6c446ea 100644 --- a/examples/c302_C1_Pharyngeal.net.nml +++ b/examples/c302_C1_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C1_Social.net.nml b/examples/c302_C1_Social.net.nml index 2e9a31aa..dcd80cf6 100644 --- a/examples/c302_C1_Social.net.nml +++ b/examples/c302_C1_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C1_Syns.net.nml b/examples/c302_C1_Syns.net.nml index 3412db04..3fd71919 100644 --- a/examples/c302_C1_Syns.net.nml +++ b/examples/c302_C1_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C2_FW.net.nml b/examples/c302_C2_FW.net.nml index 2c9877c2..db487038 100644 --- a/examples/c302_C2_FW.net.nml +++ b/examples/c302_C2_FW.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.UpdatedSpreadsheetDataReader2 - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AVBL', 'AVBR', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'VD1', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'VD10', 'VD11', 'VD12', 'VD13', 'VB1', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VB10', 'VB11', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6'] diff --git a/examples/c302_C2_Full.net.nml b/examples/c302_C2_Full.net.nml index bc7ab0c7..1cab9e79 100644 --- a/examples/c302_C2_Full.net.nml +++ b/examples/c302_C2_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C2_IClamp.net.nml b/examples/c302_C2_IClamp.net.nml index 5acbbb5f..9685473f 100644 --- a/examples/c302_C2_IClamp.net.nml +++ b/examples/c302_C2_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C2_Muscles.net.nml b/examples/c302_C2_Muscles.net.nml index f25bd410..663b51cc 100644 --- a/examples/c302_C2_Muscles.net.nml +++ b/examples/c302_C2_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C2_Oscillator.net.nml b/examples/c302_C2_Oscillator.net.nml index 95bcda46..6fa2c3cb 100644 --- a/examples/c302_C2_Oscillator.net.nml +++ b/examples/c302_C2_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C2_Pharyngeal.net.nml b/examples/c302_C2_Pharyngeal.net.nml index fb19e07b..d582d449 100644 --- a/examples/c302_C2_Pharyngeal.net.nml +++ b/examples/c302_C2_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C2_Social.net.nml b/examples/c302_C2_Social.net.nml index 66cc9e7f..d846f770 100644 --- a/examples/c302_C2_Social.net.nml +++ b/examples/c302_C2_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C2_Syns.net.nml b/examples/c302_C2_Syns.net.nml index d3b22ad1..b66cdf42 100644 --- a/examples/c302_C2_Syns.net.nml +++ b/examples/c302_C2_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C_Full.net.nml b/examples/c302_C_Full.net.nml index d00d72ad..4ba91150 100644 --- a/examples/c302_C_Full.net.nml +++ b/examples/c302_C_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C_IClamp.net.nml b/examples/c302_C_IClamp.net.nml index c0236082..6343a4df 100644 --- a/examples/c302_C_IClamp.net.nml +++ b/examples/c302_C_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C_Muscles.net.nml b/examples/c302_C_Muscles.net.nml index b0d848a9..8e5d9f30 100644 --- a/examples/c302_C_Muscles.net.nml +++ b/examples/c302_C_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C_Oscillator.net.nml b/examples/c302_C_Oscillator.net.nml index 206150b5..ac12aa33 100644 --- a/examples/c302_C_Oscillator.net.nml +++ b/examples/c302_C_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C_Pharyngeal.net.nml b/examples/c302_C_Pharyngeal.net.nml index 399f08e5..dd2633f8 100644 --- a/examples/c302_C_Pharyngeal.net.nml +++ b/examples/c302_C_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C_Social.net.nml b/examples/c302_C_Social.net.nml index b5b68141..e9a40bd0 100644 --- a/examples/c302_C_Social.net.nml +++ b/examples/c302_C_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C_Syns.net.nml b/examples/c302_C_Syns.net.nml index 621e4754..f7ef154d 100644 --- a/examples/c302_C_Syns.net.nml +++ b/examples/c302_C_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_D1_Full.net.nml b/examples/c302_D1_Full.net.nml index f40a41fb..616243fb 100644 --- a/examples/c302_D1_Full.net.nml +++ b/examples/c302_D1_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_D1_IClamp.net.nml b/examples/c302_D1_IClamp.net.nml index 06ab2ce5..1049ad32 100644 --- a/examples/c302_D1_IClamp.net.nml +++ b/examples/c302_D1_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_D1_Muscles.net.nml b/examples/c302_D1_Muscles.net.nml index b3f2e05f..42247e6e 100644 --- a/examples/c302_D1_Muscles.net.nml +++ b/examples/c302_D1_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_D1_Oscillator.net.nml b/examples/c302_D1_Oscillator.net.nml index fb9d7fac..142321bd 100644 --- a/examples/c302_D1_Oscillator.net.nml +++ b/examples/c302_D1_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_D1_Pharyngeal.net.nml b/examples/c302_D1_Pharyngeal.net.nml index 80ff864a..3c8479ea 100644 --- a/examples/c302_D1_Pharyngeal.net.nml +++ b/examples/c302_D1_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_D1_Social.net.nml b/examples/c302_D1_Social.net.nml index a790ee6a..b91ab728 100644 --- a/examples/c302_D1_Social.net.nml +++ b/examples/c302_D1_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_D1_Syns.net.nml b/examples/c302_D1_Syns.net.nml index 74bf0ef3..7344d684 100644 --- a/examples/c302_D1_Syns.net.nml +++ b/examples/c302_D1_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_D_Full.net.nml b/examples/c302_D_Full.net.nml index 0e385c0e..484f81fc 100644 --- a/examples/c302_D_Full.net.nml +++ b/examples/c302_D_Full.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_D_IClamp.net.nml b/examples/c302_D_IClamp.net.nml index 60cc5dc3..a9cc2626 100644 --- a/examples/c302_D_IClamp.net.nml +++ b/examples/c302_D_IClamp.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_D_Muscles.net.nml b/examples/c302_D_Muscles.net.nml index 71d2b6ba..1971e2b8 100644 --- a/examples/c302_D_Muscles.net.nml +++ b/examples/c302_D_Muscles.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_D_Oscillator.net.nml b/examples/c302_D_Oscillator.net.nml index b6d4243f..5c56fa1e 100644 --- a/examples/c302_D_Oscillator.net.nml +++ b/examples/c302_D_Oscillator.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_D_Pharyngeal.net.nml b/examples/c302_D_Pharyngeal.net.nml index 4730fea4..17112830 100644 --- a/examples/c302_D_Pharyngeal.net.nml +++ b/examples/c302_D_Pharyngeal.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_D_Social.net.nml b/examples/c302_D_Social.net.nml index 84c00e76..c81eb1ce 100644 --- a/examples/c302_D_Social.net.nml +++ b/examples/c302_D_Social.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_D_Syns.net.nml b/examples/c302_D_Syns.net.nml index 7887a511..19dfd047 100644 --- a/examples/c302_D_Syns.net.nml +++ b/examples/c302_D_Syns.net.nml @@ -4,8 +4,8 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader - c302 version: 0.9.1 - cect version: 0.2.2 + c302 version: 0.10.0 + cect version: 0.2.3 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] From 9aefe9733f9d633f7252f584812577cd3a9b385c Mon Sep 17 00:00:00 2001 From: pgleeson Date: Fri, 24 Jan 2025 14:58:21 +0000 Subject: [PATCH 06/18] Fix outputSynapse --- examples/custom_synapses.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/custom_synapses.xml b/examples/custom_synapses.xml index fd32acef..83f492ca 100644 --- a/examples/custom_synapses.xml +++ b/examples/custom_synapses.xml @@ -19,7 +19,7 @@ - + From 1976d2b6a717ada44e1cee9ec6e7cb8cc98e1391 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 29 Jan 2025 17:31:18 +0000 Subject: [PATCH 07/18] Fix synapse --- c302/__init__.py | 3 ++- c302/custom_synapses.xml | 4 ++-- examples/custom_synapses.xml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/c302/__init__.py b/c302/__init__.py index 18c3e26f..9f24486b 100755 --- a/c302/__init__.py +++ b/c302/__init__.py @@ -104,7 +104,8 @@ def load_data_reader(data_reader): """ # return importlib.import_module("c302.%s" % data_reader) if "cect" in data_reader: - return importlib.import_module("%s" % data_reader) + dr = importlib.import_module("%s" % data_reader) + return dr.get_instance() else: return importlib.import_module("c302.%s" % data_reader) diff --git a/c302/custom_synapses.xml b/c302/custom_synapses.xml index fd32acef..1c3c1de8 100644 --- a/c302/custom_synapses.xml +++ b/c302/custom_synapses.xml @@ -14,12 +14,12 @@ - + - + diff --git a/examples/custom_synapses.xml b/examples/custom_synapses.xml index 83f492ca..1c3c1de8 100644 --- a/examples/custom_synapses.xml +++ b/examples/custom_synapses.xml @@ -14,7 +14,7 @@ - + From f054f363e47f55984bcc1ae829c28c3f29a63f77 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Tue, 4 Feb 2025 12:36:28 +0000 Subject: [PATCH 08/18] Genersted files to v0.2.4 --- examples/LEMS_c302_A_Full.xml | 2 +- examples/LEMS_c302_A_IClamp.xml | 2 +- examples/LEMS_c302_A_Muscles.xml | 2 +- examples/LEMS_c302_A_Oscillator.xml | 2 +- examples/LEMS_c302_A_Pharyngeal.xml | 2 +- examples/LEMS_c302_A_Social.xml | 2 +- examples/LEMS_c302_A_Syns.xml | 2 +- examples/LEMS_c302_B_Full.xml | 2 +- examples/LEMS_c302_B_IClamp.xml | 2 +- examples/LEMS_c302_B_Muscles.xml | 2 +- examples/LEMS_c302_B_Oscillator.xml | 2 +- examples/LEMS_c302_B_Pharyngeal.xml | 2 +- examples/LEMS_c302_B_Social.xml | 2 +- examples/LEMS_c302_B_Syns.xml | 2 +- examples/LEMS_c302_C0_Full.xml | 2 +- examples/LEMS_c302_C0_IClamp.xml | 2 +- examples/LEMS_c302_C0_Muscles.xml | 2 +- examples/LEMS_c302_C0_Oscillator.xml | 8 ++++---- examples/LEMS_c302_C0_Pharyngeal.xml | 2 +- examples/LEMS_c302_C0_Social.xml | 2 +- examples/LEMS_c302_C0_Syns.xml | 2 +- examples/LEMS_c302_C1_Full.xml | 2 +- examples/LEMS_c302_C1_IClamp.xml | 2 +- examples/LEMS_c302_C1_Muscles.xml | 2 +- examples/LEMS_c302_C1_Oscillator.xml | 2 +- examples/LEMS_c302_C1_Pharyngeal.xml | 2 +- examples/LEMS_c302_C1_Social.xml | 2 +- examples/LEMS_c302_C1_Syns.xml | 2 +- examples/LEMS_c302_C2_FW.xml | 2 +- examples/LEMS_c302_C2_Full.xml | 2 +- examples/LEMS_c302_C2_IClamp.xml | 2 +- examples/LEMS_c302_C2_Muscles.xml | 2 +- examples/LEMS_c302_C2_Oscillator.xml | 2 +- examples/LEMS_c302_C2_Pharyngeal.xml | 2 +- examples/LEMS_c302_C2_Social.xml | 2 +- examples/LEMS_c302_C2_Syns.xml | 2 +- examples/LEMS_c302_C_Full.xml | 2 +- examples/LEMS_c302_C_IClamp.xml | 2 +- examples/LEMS_c302_C_Muscles.xml | 2 +- examples/LEMS_c302_C_Oscillator.xml | 2 +- examples/LEMS_c302_C_Pharyngeal.xml | 2 +- examples/LEMS_c302_C_Social.xml | 2 +- examples/LEMS_c302_C_Syns.xml | 2 +- examples/LEMS_c302_D1_Full.xml | 2 +- examples/LEMS_c302_D1_IClamp.xml | 2 +- examples/LEMS_c302_D1_Muscles.xml | 2 +- examples/LEMS_c302_D1_Oscillator.xml | 2 +- examples/LEMS_c302_D1_Pharyngeal.xml | 2 +- examples/LEMS_c302_D1_Social.xml | 2 +- examples/LEMS_c302_D1_Syns.xml | 2 +- examples/LEMS_c302_D_Full.xml | 2 +- examples/LEMS_c302_D_IClamp.xml | 2 +- examples/LEMS_c302_D_Muscles.xml | 2 +- examples/LEMS_c302_D_Oscillator.xml | 2 +- examples/LEMS_c302_D_Pharyngeal.xml | 2 +- examples/LEMS_c302_D_Social.xml | 2 +- examples/LEMS_c302_D_Syns.xml | 2 +- examples/c302_A_Full.net.nml | 2 +- examples/c302_A_IClamp.net.nml | 2 +- examples/c302_A_Muscles.net.nml | 2 +- examples/c302_A_Oscillator.net.nml | 2 +- examples/c302_A_Pharyngeal.net.nml | 2 +- examples/c302_A_Social.net.nml | 2 +- examples/c302_A_Syns.net.nml | 2 +- examples/c302_B_Full.net.nml | 2 +- examples/c302_B_IClamp.net.nml | 2 +- examples/c302_B_Muscles.net.nml | 2 +- examples/c302_B_Oscillator.net.nml | 2 +- examples/c302_B_Pharyngeal.net.nml | 2 +- examples/c302_B_Social.net.nml | 2 +- examples/c302_B_Syns.net.nml | 2 +- examples/c302_C0_Full.net.nml | 2 +- examples/c302_C0_IClamp.net.nml | 2 +- examples/c302_C0_Muscles.net.nml | 2 +- examples/c302_C0_Oscillator.net.nml | 6 +++--- examples/c302_C0_Pharyngeal.net.nml | 2 +- examples/c302_C0_Social.net.nml | 2 +- examples/c302_C0_Syns.net.nml | 2 +- examples/c302_C1_Full.net.nml | 2 +- examples/c302_C1_IClamp.net.nml | 2 +- examples/c302_C1_Muscles.net.nml | 2 +- examples/c302_C1_Oscillator.net.nml | 2 +- examples/c302_C1_Pharyngeal.net.nml | 2 +- examples/c302_C1_Social.net.nml | 2 +- examples/c302_C1_Syns.net.nml | 2 +- examples/c302_C2_FW.net.nml | 2 +- examples/c302_C2_Full.net.nml | 2 +- examples/c302_C2_IClamp.net.nml | 2 +- examples/c302_C2_Muscles.net.nml | 2 +- examples/c302_C2_Oscillator.net.nml | 2 +- examples/c302_C2_Pharyngeal.net.nml | 2 +- examples/c302_C2_Social.net.nml | 2 +- examples/c302_C2_Syns.net.nml | 2 +- examples/c302_C_Full.net.nml | 2 +- examples/c302_C_IClamp.net.nml | 2 +- examples/c302_C_Muscles.net.nml | 2 +- examples/c302_C_Oscillator.net.nml | 2 +- examples/c302_C_Pharyngeal.net.nml | 2 +- examples/c302_C_Social.net.nml | 2 +- examples/c302_C_Syns.net.nml | 2 +- examples/c302_D1_Full.net.nml | 2 +- examples/c302_D1_IClamp.net.nml | 2 +- examples/c302_D1_Muscles.net.nml | 2 +- examples/c302_D1_Oscillator.net.nml | 2 +- examples/c302_D1_Pharyngeal.net.nml | 2 +- examples/c302_D1_Social.net.nml | 2 +- examples/c302_D1_Syns.net.nml | 2 +- examples/c302_D_Full.net.nml | 2 +- examples/c302_D_IClamp.net.nml | 2 +- examples/c302_D_Muscles.net.nml | 2 +- examples/c302_D_Oscillator.net.nml | 2 +- examples/c302_D_Pharyngeal.net.nml | 2 +- examples/c302_D_Social.net.nml | 2 +- examples/c302_D_Syns.net.nml | 2 +- 114 files changed, 119 insertions(+), 119 deletions(-) diff --git a/examples/LEMS_c302_A_Full.xml b/examples/LEMS_c302_A_Full.xml index 23af1ca9..9709b74a 100644 --- a/examples/LEMS_c302_A_Full.xml +++ b/examples/LEMS_c302_A_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_A_IClamp.xml b/examples/LEMS_c302_A_IClamp.xml index aa0d5ec1..546b7159 100644 --- a/examples/LEMS_c302_A_IClamp.xml +++ b/examples/LEMS_c302_A_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_A_Muscles.xml b/examples/LEMS_c302_A_Muscles.xml index 47e445f0..eb1173bf 100644 --- a/examples/LEMS_c302_A_Muscles.xml +++ b/examples/LEMS_c302_A_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_A_Oscillator.xml b/examples/LEMS_c302_A_Oscillator.xml index a87070ac..88cf09a8 100644 --- a/examples/LEMS_c302_A_Oscillator.xml +++ b/examples/LEMS_c302_A_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_A_Pharyngeal.xml b/examples/LEMS_c302_A_Pharyngeal.xml index ce6e2a81..a0487fcb 100644 --- a/examples/LEMS_c302_A_Pharyngeal.xml +++ b/examples/LEMS_c302_A_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_A_Social.xml b/examples/LEMS_c302_A_Social.xml index 48d6a973..17b88450 100644 --- a/examples/LEMS_c302_A_Social.xml +++ b/examples/LEMS_c302_A_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_A_Syns.xml b/examples/LEMS_c302_A_Syns.xml index 5422694b..5103f31a 100644 --- a/examples/LEMS_c302_A_Syns.xml +++ b/examples/LEMS_c302_A_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2'] diff --git a/examples/LEMS_c302_B_Full.xml b/examples/LEMS_c302_B_Full.xml index bd0df7f3..807bd6c6 100644 --- a/examples/LEMS_c302_B_Full.xml +++ b/examples/LEMS_c302_B_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_B_IClamp.xml b/examples/LEMS_c302_B_IClamp.xml index f378d43e..970bbf48 100644 --- a/examples/LEMS_c302_B_IClamp.xml +++ b/examples/LEMS_c302_B_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_B_Muscles.xml b/examples/LEMS_c302_B_Muscles.xml index 3d23d9df..397121ca 100644 --- a/examples/LEMS_c302_B_Muscles.xml +++ b/examples/LEMS_c302_B_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_B_Oscillator.xml b/examples/LEMS_c302_B_Oscillator.xml index 7010c007..54673bd3 100644 --- a/examples/LEMS_c302_B_Oscillator.xml +++ b/examples/LEMS_c302_B_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_B_Pharyngeal.xml b/examples/LEMS_c302_B_Pharyngeal.xml index 587e32a6..7e40a7e8 100644 --- a/examples/LEMS_c302_B_Pharyngeal.xml +++ b/examples/LEMS_c302_B_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_B_Social.xml b/examples/LEMS_c302_B_Social.xml index 694455f3..251fdf82 100644 --- a/examples/LEMS_c302_B_Social.xml +++ b/examples/LEMS_c302_B_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_B_Syns.xml b/examples/LEMS_c302_B_Syns.xml index 7e474c26..a253921f 100644 --- a/examples/LEMS_c302_B_Syns.xml +++ b/examples/LEMS_c302_B_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C0_Full.xml b/examples/LEMS_c302_C0_Full.xml index 16ca2f94..540eced4 100644 --- a/examples/LEMS_c302_C0_Full.xml +++ b/examples/LEMS_c302_C0_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C0_IClamp.xml b/examples/LEMS_c302_C0_IClamp.xml index 7df80155..2ae8b125 100644 --- a/examples/LEMS_c302_C0_IClamp.xml +++ b/examples/LEMS_c302_C0_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C0_Muscles.xml b/examples/LEMS_c302_C0_Muscles.xml index cd62a208..153ff905 100644 --- a/examples/LEMS_c302_C0_Muscles.xml +++ b/examples/LEMS_c302_C0_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C0_Oscillator.xml b/examples/LEMS_c302_C0_Oscillator.xml index 526b145d..4b768e02 100644 --- a/examples/LEMS_c302_C0_Oscillator.xml +++ b/examples/LEMS_c302_C0_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -78,9 +78,9 @@ Parameters and setting used to generate this network: - + - + @@ -99,7 +99,7 @@ Parameters and setting used to generate this network: - + diff --git a/examples/LEMS_c302_C0_Pharyngeal.xml b/examples/LEMS_c302_C0_Pharyngeal.xml index 826dd1c2..edbadba6 100644 --- a/examples/LEMS_c302_C0_Pharyngeal.xml +++ b/examples/LEMS_c302_C0_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C0_Social.xml b/examples/LEMS_c302_C0_Social.xml index 1531d079..f200fb7a 100644 --- a/examples/LEMS_c302_C0_Social.xml +++ b/examples/LEMS_c302_C0_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C0_Syns.xml b/examples/LEMS_c302_C0_Syns.xml index e867d85f..45524273 100644 --- a/examples/LEMS_c302_C0_Syns.xml +++ b/examples/LEMS_c302_C0_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C1_Full.xml b/examples/LEMS_c302_C1_Full.xml index beddd23f..1c4f9bb3 100644 --- a/examples/LEMS_c302_C1_Full.xml +++ b/examples/LEMS_c302_C1_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C1_IClamp.xml b/examples/LEMS_c302_C1_IClamp.xml index 463a4d6c..753c15e6 100644 --- a/examples/LEMS_c302_C1_IClamp.xml +++ b/examples/LEMS_c302_C1_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C1_Muscles.xml b/examples/LEMS_c302_C1_Muscles.xml index dc800b20..05faf88a 100644 --- a/examples/LEMS_c302_C1_Muscles.xml +++ b/examples/LEMS_c302_C1_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C1_Oscillator.xml b/examples/LEMS_c302_C1_Oscillator.xml index 82b77bf4..f99c6806 100644 --- a/examples/LEMS_c302_C1_Oscillator.xml +++ b/examples/LEMS_c302_C1_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C1_Pharyngeal.xml b/examples/LEMS_c302_C1_Pharyngeal.xml index 43ab7dd5..be510588 100644 --- a/examples/LEMS_c302_C1_Pharyngeal.xml +++ b/examples/LEMS_c302_C1_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C1_Social.xml b/examples/LEMS_c302_C1_Social.xml index 5decdd22..7f3ee3e7 100644 --- a/examples/LEMS_c302_C1_Social.xml +++ b/examples/LEMS_c302_C1_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C1_Syns.xml b/examples/LEMS_c302_C1_Syns.xml index be44ed8b..be184a65 100644 --- a/examples/LEMS_c302_C1_Syns.xml +++ b/examples/LEMS_c302_C1_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C2_FW.xml b/examples/LEMS_c302_C2_FW.xml index 0dc60790..275e9ec6 100644 --- a/examples/LEMS_c302_C2_FW.xml +++ b/examples/LEMS_c302_C2_FW.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.UpdatedSpreadsheetDataReader2 c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AVBL', 'AVBR', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'VD1', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'VD10', 'VD11', 'VD12', 'VD13', 'VB1', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VB10', 'VB11', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6'] diff --git a/examples/LEMS_c302_C2_Full.xml b/examples/LEMS_c302_C2_Full.xml index a78355a1..3029616e 100644 --- a/examples/LEMS_c302_C2_Full.xml +++ b/examples/LEMS_c302_C2_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C2_IClamp.xml b/examples/LEMS_c302_C2_IClamp.xml index c398fdf6..39bb8d74 100644 --- a/examples/LEMS_c302_C2_IClamp.xml +++ b/examples/LEMS_c302_C2_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C2_Muscles.xml b/examples/LEMS_c302_C2_Muscles.xml index 53752714..7b3cfa4d 100644 --- a/examples/LEMS_c302_C2_Muscles.xml +++ b/examples/LEMS_c302_C2_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C2_Oscillator.xml b/examples/LEMS_c302_C2_Oscillator.xml index e21b5d5e..f2db266e 100644 --- a/examples/LEMS_c302_C2_Oscillator.xml +++ b/examples/LEMS_c302_C2_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C2_Pharyngeal.xml b/examples/LEMS_c302_C2_Pharyngeal.xml index 7b065e86..d2db8897 100644 --- a/examples/LEMS_c302_C2_Pharyngeal.xml +++ b/examples/LEMS_c302_C2_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C2_Social.xml b/examples/LEMS_c302_C2_Social.xml index 58459754..77479711 100644 --- a/examples/LEMS_c302_C2_Social.xml +++ b/examples/LEMS_c302_C2_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C2_Syns.xml b/examples/LEMS_c302_C2_Syns.xml index 2b165b2a..3f84fd2a 100644 --- a/examples/LEMS_c302_C2_Syns.xml +++ b/examples/LEMS_c302_C2_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_C_Full.xml b/examples/LEMS_c302_C_Full.xml index 643a5be6..01e632e5 100644 --- a/examples/LEMS_c302_C_Full.xml +++ b/examples/LEMS_c302_C_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_C_IClamp.xml b/examples/LEMS_c302_C_IClamp.xml index 4e887022..a0e988fb 100644 --- a/examples/LEMS_c302_C_IClamp.xml +++ b/examples/LEMS_c302_C_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_C_Muscles.xml b/examples/LEMS_c302_C_Muscles.xml index 8355513e..d96c43b6 100644 --- a/examples/LEMS_c302_C_Muscles.xml +++ b/examples/LEMS_c302_C_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_C_Oscillator.xml b/examples/LEMS_c302_C_Oscillator.xml index 23011bee..d11237f9 100644 --- a/examples/LEMS_c302_C_Oscillator.xml +++ b/examples/LEMS_c302_C_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_C_Pharyngeal.xml b/examples/LEMS_c302_C_Pharyngeal.xml index f287a10f..0eb625d3 100644 --- a/examples/LEMS_c302_C_Pharyngeal.xml +++ b/examples/LEMS_c302_C_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_C_Social.xml b/examples/LEMS_c302_C_Social.xml index 5844a855..3a9a2223 100644 --- a/examples/LEMS_c302_C_Social.xml +++ b/examples/LEMS_c302_C_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_C_Syns.xml b/examples/LEMS_c302_C_Syns.xml index 8a07c01d..4c5c27dc 100644 --- a/examples/LEMS_c302_C_Syns.xml +++ b/examples/LEMS_c302_C_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_D1_Full.xml b/examples/LEMS_c302_D1_Full.xml index 996e259f..49c9e28a 100644 --- a/examples/LEMS_c302_D1_Full.xml +++ b/examples/LEMS_c302_D1_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_D1_IClamp.xml b/examples/LEMS_c302_D1_IClamp.xml index cdf6ebf0..5738eb82 100644 --- a/examples/LEMS_c302_D1_IClamp.xml +++ b/examples/LEMS_c302_D1_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_D1_Muscles.xml b/examples/LEMS_c302_D1_Muscles.xml index 1299150d..e8979211 100644 --- a/examples/LEMS_c302_D1_Muscles.xml +++ b/examples/LEMS_c302_D1_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_D1_Oscillator.xml b/examples/LEMS_c302_D1_Oscillator.xml index 7628fcd3..fcfbad2a 100644 --- a/examples/LEMS_c302_D1_Oscillator.xml +++ b/examples/LEMS_c302_D1_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_D1_Pharyngeal.xml b/examples/LEMS_c302_D1_Pharyngeal.xml index 2b9870ab..866901d6 100644 --- a/examples/LEMS_c302_D1_Pharyngeal.xml +++ b/examples/LEMS_c302_D1_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_D1_Social.xml b/examples/LEMS_c302_D1_Social.xml index ef088ab1..9c2c19e2 100644 --- a/examples/LEMS_c302_D1_Social.xml +++ b/examples/LEMS_c302_D1_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_D1_Syns.xml b/examples/LEMS_c302_D1_Syns.xml index 293080b2..1dd03e42 100644 --- a/examples/LEMS_c302_D1_Syns.xml +++ b/examples/LEMS_c302_D1_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/LEMS_c302_D_Full.xml b/examples/LEMS_c302_D_Full.xml index 470255e9..436e55e6 100644 --- a/examples/LEMS_c302_D_Full.xml +++ b/examples/LEMS_c302_D_Full.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/LEMS_c302_D_IClamp.xml b/examples/LEMS_c302_D_IClamp.xml index 8b55da53..6008fafc 100644 --- a/examples/LEMS_c302_D_IClamp.xml +++ b/examples/LEMS_c302_D_IClamp.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/LEMS_c302_D_Muscles.xml b/examples/LEMS_c302_D_Muscles.xml index b9b7c4a3..e5b47ebb 100644 --- a/examples/LEMS_c302_D_Muscles.xml +++ b/examples/LEMS_c302_D_Muscles.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/LEMS_c302_D_Oscillator.xml b/examples/LEMS_c302_D_Oscillator.xml index eb7d15c2..810952a9 100644 --- a/examples/LEMS_c302_D_Oscillator.xml +++ b/examples/LEMS_c302_D_Oscillator.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/LEMS_c302_D_Pharyngeal.xml b/examples/LEMS_c302_D_Pharyngeal.xml index 63767fbd..5dac6651 100644 --- a/examples/LEMS_c302_D_Pharyngeal.xml +++ b/examples/LEMS_c302_D_Pharyngeal.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/LEMS_c302_D_Social.xml b/examples/LEMS_c302_D_Social.xml index 279bdcc0..eac29643 100644 --- a/examples/LEMS_c302_D_Social.xml +++ b/examples/LEMS_c302_D_Social.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/LEMS_c302_D_Syns.xml b/examples/LEMS_c302_D_Syns.xml index a218140f..7b0e66c6 100644 --- a/examples/LEMS_c302_D_Syns.xml +++ b/examples/LEMS_c302_D_Syns.xml @@ -7,7 +7,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_A_Full.net.nml b/examples/c302_A_Full.net.nml index 7d3f8fad..03d9cc19 100644 --- a/examples/c302_A_Full.net.nml +++ b/examples/c302_A_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_A_IClamp.net.nml b/examples/c302_A_IClamp.net.nml index 8231ace7..e887d256 100644 --- a/examples/c302_A_IClamp.net.nml +++ b/examples/c302_A_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_A_Muscles.net.nml b/examples/c302_A_Muscles.net.nml index 6cddbf41..d69753b6 100644 --- a/examples/c302_A_Muscles.net.nml +++ b/examples/c302_A_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_A_Oscillator.net.nml b/examples/c302_A_Oscillator.net.nml index ad80de88..8963df73 100644 --- a/examples/c302_A_Oscillator.net.nml +++ b/examples/c302_A_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_A_Pharyngeal.net.nml b/examples/c302_A_Pharyngeal.net.nml index 2b1b4fa5..cea519ce 100644 --- a/examples/c302_A_Pharyngeal.net.nml +++ b/examples/c302_A_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_A_Social.net.nml b/examples/c302_A_Social.net.nml index 5dc41940..3f479eb7 100644 --- a/examples/c302_A_Social.net.nml +++ b/examples/c302_A_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_A_Syns.net.nml b/examples/c302_A_Syns.net.nml index c34577f2..e56fcdad 100644 --- a/examples/c302_A_Syns.net.nml +++ b/examples/c302_A_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2'] diff --git a/examples/c302_B_Full.net.nml b/examples/c302_B_Full.net.nml index 25bed730..cc0f16db 100644 --- a/examples/c302_B_Full.net.nml +++ b/examples/c302_B_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_B_IClamp.net.nml b/examples/c302_B_IClamp.net.nml index b59bdbbe..bbfb3ee2 100644 --- a/examples/c302_B_IClamp.net.nml +++ b/examples/c302_B_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_B_Muscles.net.nml b/examples/c302_B_Muscles.net.nml index d7c31d36..2c0fe5f9 100644 --- a/examples/c302_B_Muscles.net.nml +++ b/examples/c302_B_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_B_Oscillator.net.nml b/examples/c302_B_Oscillator.net.nml index f5368b04..0658e32f 100644 --- a/examples/c302_B_Oscillator.net.nml +++ b/examples/c302_B_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_B_Pharyngeal.net.nml b/examples/c302_B_Pharyngeal.net.nml index 3dc791d6..44959548 100644 --- a/examples/c302_B_Pharyngeal.net.nml +++ b/examples/c302_B_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_B_Social.net.nml b/examples/c302_B_Social.net.nml index 0dc0951c..4a0da430 100644 --- a/examples/c302_B_Social.net.nml +++ b/examples/c302_B_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_B_Syns.net.nml b/examples/c302_B_Syns.net.nml index 832bb6e8..c1eb193a 100644 --- a/examples/c302_B_Syns.net.nml +++ b/examples/c302_B_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C0_Full.net.nml b/examples/c302_C0_Full.net.nml index 7210bb3a..1eb9150a 100644 --- a/examples/c302_C0_Full.net.nml +++ b/examples/c302_C0_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C0_IClamp.net.nml b/examples/c302_C0_IClamp.net.nml index ea9d7fd9..9ffc08ee 100644 --- a/examples/c302_C0_IClamp.net.nml +++ b/examples/c302_C0_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C0_Muscles.net.nml b/examples/c302_C0_Muscles.net.nml index 84834f64..05d21eff 100644 --- a/examples/c302_C0_Muscles.net.nml +++ b/examples/c302_C0_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C0_Oscillator.net.nml b/examples/c302_C0_Oscillator.net.nml index 851d69d9..2653613a 100644 --- a/examples/c302_C0_Oscillator.net.nml +++ b/examples/c302_C0_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] @@ -110,8 +110,8 @@ Parameters and setting used to generate this network: - - + + diff --git a/examples/c302_C0_Pharyngeal.net.nml b/examples/c302_C0_Pharyngeal.net.nml index 86218f66..c70373a2 100644 --- a/examples/c302_C0_Pharyngeal.net.nml +++ b/examples/c302_C0_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C0_Social.net.nml b/examples/c302_C0_Social.net.nml index 691b7f5a..8a26ea32 100644 --- a/examples/c302_C0_Social.net.nml +++ b/examples/c302_C0_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C0_Syns.net.nml b/examples/c302_C0_Syns.net.nml index 900cc3ba..f3139370 100644 --- a/examples/c302_C0_Syns.net.nml +++ b/examples/c302_C0_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C1_Full.net.nml b/examples/c302_C1_Full.net.nml index 7e31c00f..d01fc4ce 100644 --- a/examples/c302_C1_Full.net.nml +++ b/examples/c302_C1_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C1_IClamp.net.nml b/examples/c302_C1_IClamp.net.nml index 3b403497..546a37a5 100644 --- a/examples/c302_C1_IClamp.net.nml +++ b/examples/c302_C1_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C1_Muscles.net.nml b/examples/c302_C1_Muscles.net.nml index a4058d47..2efd8bcc 100644 --- a/examples/c302_C1_Muscles.net.nml +++ b/examples/c302_C1_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C1_Oscillator.net.nml b/examples/c302_C1_Oscillator.net.nml index 2e724b4b..7d67e297 100644 --- a/examples/c302_C1_Oscillator.net.nml +++ b/examples/c302_C1_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C1_Pharyngeal.net.nml b/examples/c302_C1_Pharyngeal.net.nml index c6c446ea..9ac03b2e 100644 --- a/examples/c302_C1_Pharyngeal.net.nml +++ b/examples/c302_C1_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C1_Social.net.nml b/examples/c302_C1_Social.net.nml index dcd80cf6..b4ae0e81 100644 --- a/examples/c302_C1_Social.net.nml +++ b/examples/c302_C1_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C1_Syns.net.nml b/examples/c302_C1_Syns.net.nml index 3fd71919..c1933586 100644 --- a/examples/c302_C1_Syns.net.nml +++ b/examples/c302_C1_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C2_FW.net.nml b/examples/c302_C2_FW.net.nml index db487038..3f3bff65 100644 --- a/examples/c302_C2_FW.net.nml +++ b/examples/c302_C2_FW.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.UpdatedSpreadsheetDataReader2 c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AVBL', 'AVBR', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'VD1', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'VD10', 'VD11', 'VD12', 'VD13', 'VB1', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VB10', 'VB11', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6'] diff --git a/examples/c302_C2_Full.net.nml b/examples/c302_C2_Full.net.nml index 1cab9e79..abe6f4d9 100644 --- a/examples/c302_C2_Full.net.nml +++ b/examples/c302_C2_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C2_IClamp.net.nml b/examples/c302_C2_IClamp.net.nml index 9685473f..8b7b4013 100644 --- a/examples/c302_C2_IClamp.net.nml +++ b/examples/c302_C2_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C2_Muscles.net.nml b/examples/c302_C2_Muscles.net.nml index 663b51cc..4401c935 100644 --- a/examples/c302_C2_Muscles.net.nml +++ b/examples/c302_C2_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C2_Oscillator.net.nml b/examples/c302_C2_Oscillator.net.nml index 6fa2c3cb..ae897228 100644 --- a/examples/c302_C2_Oscillator.net.nml +++ b/examples/c302_C2_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C2_Pharyngeal.net.nml b/examples/c302_C2_Pharyngeal.net.nml index d582d449..4376b610 100644 --- a/examples/c302_C2_Pharyngeal.net.nml +++ b/examples/c302_C2_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C2_Social.net.nml b/examples/c302_C2_Social.net.nml index d846f770..f5c056e3 100644 --- a/examples/c302_C2_Social.net.nml +++ b/examples/c302_C2_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C2_Syns.net.nml b/examples/c302_C2_Syns.net.nml index b66cdf42..0aaacbf5 100644 --- a/examples/c302_C2_Syns.net.nml +++ b/examples/c302_C2_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_C_Full.net.nml b/examples/c302_C_Full.net.nml index 4ba91150..56be88e2 100644 --- a/examples/c302_C_Full.net.nml +++ b/examples/c302_C_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_C_IClamp.net.nml b/examples/c302_C_IClamp.net.nml index 6343a4df..d4a314dc 100644 --- a/examples/c302_C_IClamp.net.nml +++ b/examples/c302_C_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_C_Muscles.net.nml b/examples/c302_C_Muscles.net.nml index 8e5d9f30..7dd93b0d 100644 --- a/examples/c302_C_Muscles.net.nml +++ b/examples/c302_C_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_C_Oscillator.net.nml b/examples/c302_C_Oscillator.net.nml index ac12aa33..c3a1e21b 100644 --- a/examples/c302_C_Oscillator.net.nml +++ b/examples/c302_C_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_C_Pharyngeal.net.nml b/examples/c302_C_Pharyngeal.net.nml index dd2633f8..71a24041 100644 --- a/examples/c302_C_Pharyngeal.net.nml +++ b/examples/c302_C_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_C_Social.net.nml b/examples/c302_C_Social.net.nml index e9a40bd0..788f07e9 100644 --- a/examples/c302_C_Social.net.nml +++ b/examples/c302_C_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_C_Syns.net.nml b/examples/c302_C_Syns.net.nml index f7ef154d..363cd4b2 100644 --- a/examples/c302_C_Syns.net.nml +++ b/examples/c302_C_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_D1_Full.net.nml b/examples/c302_D1_Full.net.nml index 616243fb..ebd03f93 100644 --- a/examples/c302_D1_Full.net.nml +++ b/examples/c302_D1_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_D1_IClamp.net.nml b/examples/c302_D1_IClamp.net.nml index 1049ad32..4251a100 100644 --- a/examples/c302_D1_IClamp.net.nml +++ b/examples/c302_D1_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_D1_Muscles.net.nml b/examples/c302_D1_Muscles.net.nml index 42247e6e..f2ed2766 100644 --- a/examples/c302_D1_Muscles.net.nml +++ b/examples/c302_D1_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_D1_Oscillator.net.nml b/examples/c302_D1_Oscillator.net.nml index 142321bd..cda33cd3 100644 --- a/examples/c302_D1_Oscillator.net.nml +++ b/examples/c302_D1_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_D1_Pharyngeal.net.nml b/examples/c302_D1_Pharyngeal.net.nml index 3c8479ea..dfbb8c2a 100644 --- a/examples/c302_D1_Pharyngeal.net.nml +++ b/examples/c302_D1_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_D1_Social.net.nml b/examples/c302_D1_Social.net.nml index b91ab728..ba7129d7 100644 --- a/examples/c302_D1_Social.net.nml +++ b/examples/c302_D1_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_D1_Syns.net.nml b/examples/c302_D1_Syns.net.nml index 7344d684..56d9a3e2 100644 --- a/examples/c302_D1_Syns.net.nml +++ b/examples/c302_D1_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] diff --git a/examples/c302_D_Full.net.nml b/examples/c302_D_Full.net.nml index 484f81fc..44fe6d16 100644 --- a/examples/c302_D_Full.net.nml +++ b/examples/c302_D_Full.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: All cells diff --git a/examples/c302_D_IClamp.net.nml b/examples/c302_D_IClamp.net.nml index a9cc2626..80ddbcf5 100644 --- a/examples/c302_D_IClamp.net.nml +++ b/examples/c302_D_IClamp.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['ADAL', 'PVCL'] diff --git a/examples/c302_D_Muscles.net.nml b/examples/c302_D_Muscles.net.nml index 1971e2b8..3d6ac1a3 100644 --- a/examples/c302_D_Muscles.net.nml +++ b/examples/c302_D_Muscles.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['AS1', 'AS10', 'AS11', 'AS2', 'AS3', 'AS4', 'AS5', 'AS6', 'AS7', 'AS8', 'AS9', 'AVFL', 'AVFR', 'AVKR', 'AVL', 'CEPVL', 'CEPVR', 'DA1', 'DA2', 'DA3', 'DA4', 'DA5', 'DA6', 'DA7', 'DA8', 'DA9', 'DB1', 'DB2', 'DB3', 'DB4', 'DB5', 'DB6', 'DB7', 'DD1', 'DD2', 'DD3', 'DD4', 'DD5', 'DD6', 'DVB', 'HSNL', 'HSNR', 'IL1DL', 'IL1DR', 'IL1L', 'IL1R', 'IL1VL', 'IL1VR', 'PDA', 'PDB', 'PVNL', 'PVNR', 'RID', 'RIML', 'RIMR', 'RIVL', 'RIVR', 'RMDDL', 'RMDDR', 'RMDL', 'RMDR', 'RMDVL', 'RMDVR', 'RMED', 'RMEL', 'RMER', 'RMEV', 'RMFL', 'RMGL', 'RMGR', 'RMHL', 'RMHR', 'SMBDL', 'SMBDR', 'SMBVL', 'SMBVR', 'SMDDL', 'SMDDR', 'SMDVL', 'SMDVR', 'URADL', 'URADR', 'URAVL', 'URAVR', 'VA1', 'VA10', 'VA11', 'VA12', 'VA2', 'VA3', 'VA4', 'VA5', 'VA6', 'VA7', 'VA8', 'VA9', 'VB1', 'VB10', 'VB11', 'VB2', 'VB3', 'VB4', 'VB5', 'VB6', 'VB7', 'VB8', 'VB9', 'VC1', 'VC2', 'VC3', 'VC4', 'VC5', 'VC6', 'VD1', 'VD10', 'VD11', 'VD12', 'VD13', 'VD2', 'VD3', 'VD4', 'VD5', 'VD6', 'VD7', 'VD8', 'VD9', 'AVAL', 'AVAR', 'AVBL', 'AVBR', 'AVDL', 'AVDR', 'PVCL', 'PVCR'] diff --git a/examples/c302_D_Oscillator.net.nml b/examples/c302_D_Oscillator.net.nml index 5c56fa1e..dbe7c9b5 100644 --- a/examples/c302_D_Oscillator.net.nml +++ b/examples/c302_D_Oscillator.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['DB2', 'VB2', 'DD2', 'VD2', 'DB3', 'VB3', 'DD3', 'VD3', 'DA2', 'VA2', 'DA3', 'VA3', 'AVBL', 'AVBR'] diff --git a/examples/c302_D_Pharyngeal.net.nml b/examples/c302_D_Pharyngeal.net.nml index 17112830..d349d7d1 100644 --- a/examples/c302_D_Pharyngeal.net.nml +++ b/examples/c302_D_Pharyngeal.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['M1', 'M2L', 'M2R', 'M3L', 'M3R', 'M4', 'M5', 'I1L', 'I1R', 'I2L', 'I2R', 'I3', 'I4', 'I5', 'I6', 'MI', 'NSML', 'NSMR', 'MCL', 'MCR'] diff --git a/examples/c302_D_Social.net.nml b/examples/c302_D_Social.net.nml index c81eb1ce..ff3efbd0 100644 --- a/examples/c302_D_Social.net.nml +++ b/examples/c302_D_Social.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['RMGR', 'ASHR', 'ASKR', 'AWBR', 'IL2R', 'RMHR', 'URXR'] diff --git a/examples/c302_D_Syns.net.nml b/examples/c302_D_Syns.net.nml index 19dfd047..054883bb 100644 --- a/examples/c302_D_Syns.net.nml +++ b/examples/c302_D_Syns.net.nml @@ -5,7 +5,7 @@ Parameters and setting used to generate this network: Data reader: cect.SpreadsheetDataReader c302 version: 0.10.0 - cect version: 0.2.3 + cect version: 0.2.4 owmeta version: - not installed - owmeta_core version: - not installed - Cells: ['URYDL', 'SMDDR', 'VD12', 'VB11', 'AS2', 'AIZL', 'ASHL'] From 2eb05592576ef52ee7c4232818b211bd5aa329fb Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 5 Feb 2025 13:37:58 +0000 Subject: [PATCH 09/18] Intermediate update to cellX --- c302/custom_synapses.xml | 10 ++++-- examples/LEMS_c302_C0_Oscillator.xml | 6 ++-- examples/c302_C0_Oscillator.net.nml | 4 +-- examples/custom_synapses.xml | 10 ++++-- examples/parametersweep/CanonicalCircuit.py | 27 +++++++++++++--- examples/parametersweep/Canonical_X.json | 33 +++----------------- examples/parametersweep/Canonical_X.net.nml | 16 +++------- examples/parametersweep/GenerateExamples.py | 2 +- examples/parametersweep/cell_X.xml | 11 ++++--- examples/parametersweep/regenerateAndTest.sh | 2 ++ examples/parametersweep/test_syns2.xml | 7 +++++ 11 files changed, 67 insertions(+), 61 deletions(-) create mode 100644 examples/parametersweep/test_syns2.xml diff --git a/c302/custom_synapses.xml b/c302/custom_synapses.xml index 1c3c1de8..6a40e72c 100644 --- a/c302/custom_synapses.xml +++ b/c302/custom_synapses.xml @@ -3,16 +3,20 @@ + + - + @@ -20,7 +24,7 @@ - + diff --git a/examples/LEMS_c302_C0_Oscillator.xml b/examples/LEMS_c302_C0_Oscillator.xml index 4b768e02..5640c356 100644 --- a/examples/LEMS_c302_C0_Oscillator.xml +++ b/examples/LEMS_c302_C0_Oscillator.xml @@ -78,9 +78,9 @@ Parameters and setting used to generate this network: - + - + @@ -99,7 +99,7 @@ Parameters and setting used to generate this network: - + diff --git a/examples/c302_C0_Oscillator.net.nml b/examples/c302_C0_Oscillator.net.nml index 2653613a..ff545efe 100644 --- a/examples/c302_C0_Oscillator.net.nml +++ b/examples/c302_C0_Oscillator.net.nml @@ -110,8 +110,8 @@ Parameters and setting used to generate this network: - - + + diff --git a/examples/custom_synapses.xml b/examples/custom_synapses.xml index 1c3c1de8..6a40e72c 100644 --- a/examples/custom_synapses.xml +++ b/examples/custom_synapses.xml @@ -3,16 +3,20 @@ + + - + @@ -20,7 +24,7 @@ - + diff --git a/examples/parametersweep/CanonicalCircuit.py b/examples/parametersweep/CanonicalCircuit.py index 595c8dc4..9dd68286 100644 --- a/examples/parametersweep/CanonicalCircuit.py +++ b/examples/parametersweep/CanonicalCircuit.py @@ -83,6 +83,20 @@ def add_connection(net, pre, post, syn, weight): ) +def add_elec_connection(net, pre, post, syn, weight): + net.projections.append( + Projection( + id="elec_proj_%s_%s" % (pre, post), + presynaptic=pre, + postsynaptic=post, + synapse=syn.id, + type="electricalProjection", + weight=weight, + random_connectivity=RandomConnectivity(probability=1), + ) + ) + + def generate(duration=1000, paramset="C"): global neuron_id global neuron_nmllite @@ -109,10 +123,14 @@ def generate(duration=1000, paramset="C"): id="neuron_to_neuron_exc_syn_x", neuroml2_source_file="test_syns.xml" ) net.synapses.append(exc_syn) + inh_syn = Synapse( id="neuron_to_neuron_inh_syn_x", neuroml2_source_file="test_syns.xml" ) - net.synapses.append(inh_syn) + # net.synapses.append(inh_syn) + + elec_syn = Synapse(id="gapJunction0", neuroml2_source_file="test_syns2.xml") + net.synapses.append(elec_syn) else: exc_syn = Synapse( @@ -170,11 +188,12 @@ def generate(duration=1000, paramset="C"): add_connection(net, "DD", "DB", inh_syn, "weight_MN_MN_Inh") if mode == "iclamp": - add_connection(net, "AVB", "VB", exc_syn, "weight_IN_MN") - add_connection(net, "VB", "VD", exc_syn, "weight_MN_MN_Exc") + add_elec_connection(net, "AVB", "VB", elec_syn, "weight_IN_MN") + # add_connection(net, "VB", "VD", exc_syn, "weight_MN_MN_Exc") + """add_connection(net, "AVB", "VB", exc_syn, 0) # add_connection(net, "VB", "DD", exc_syn, "weight_MN_MN_Exc") - add_connection(net, "VD", "VB", inh_syn, "weight_MN_MN_Inh") + add_connection(net, "VD", "VB", inh_syn, "weight_MN_MN_Inh")""" if paramset == "X": input_source = InputSource( diff --git a/examples/parametersweep/Canonical_X.json b/examples/parametersweep/Canonical_X.json index 5581c6ee..f427a82d 100644 --- a/examples/parametersweep/Canonical_X.json +++ b/examples/parametersweep/Canonical_X.json @@ -26,8 +26,8 @@ "neuron_to_neuron_exc_syn_x": { "neuroml2_source_file": "test_syns.xml" }, - "neuron_to_neuron_inh_syn_x": { - "neuroml2_source_file": "test_syns.xml" + "gapJunction0": { + "neuroml2_source_file": "test_syns2.xml" } }, "input_sources": { @@ -127,38 +127,15 @@ } }, "projections": { - "proj_AVB_VB": { + "elec_proj_AVB_VB": { "presynaptic": "AVB", "postsynaptic": "VB", - "synapse": "neuron_to_neuron_exc_syn_x", - "type": "continuousProjection", - "delay": 0, + "synapse": "gapJunction0", + "type": "electricalProjection", "weight": "weight_IN_MN", "random_connectivity": { "probability": 1 } - }, - "proj_VB_VD": { - "presynaptic": "VB", - "postsynaptic": "VD", - "synapse": "neuron_to_neuron_exc_syn_x", - "type": "continuousProjection", - "delay": 0, - "weight": "weight_MN_MN_Exc", - "random_connectivity": { - "probability": 1 - } - }, - "proj_VD_VB": { - "presynaptic": "VD", - "postsynaptic": "VB", - "synapse": "neuron_to_neuron_inh_syn_x", - "type": "continuousProjection", - "delay": 0, - "weight": "weight_MN_MN_Inh", - "random_connectivity": { - "probability": 1 - } } }, "inputs": { diff --git a/examples/parametersweep/Canonical_X.net.nml b/examples/parametersweep/Canonical_X.net.nml index 24583893..b6318f46 100644 --- a/examples/parametersweep/Canonical_X.net.nml +++ b/examples/parametersweep/Canonical_X.net.nml @@ -14,9 +14,7 @@ weight_MN_MN_Inh = -5 - - - + @@ -56,15 +54,9 @@ - - - - - - - - - + + + diff --git a/examples/parametersweep/GenerateExamples.py b/examples/parametersweep/GenerateExamples.py index fd928514..40a4dccc 100644 --- a/examples/parametersweep/GenerateExamples.py +++ b/examples/parametersweep/GenerateExamples.py @@ -33,7 +33,7 @@ def generate(cell, duration=3000, config="IClamp", parameters=None): if "IClamp" in config: if not parameters: parameters = {} - parameters["stim_amp"] = "350pA" + parameters["stim_amp"] = ".350" parameters["stim_delay"] = "2000ms" parameters["stim_duration"] = "6000ms" diff --git a/examples/parametersweep/cell_X.xml b/examples/parametersweep/cell_X.xml index 678b17f0..72842cc3 100644 --- a/examples/parametersweep/cell_X.xml +++ b/examples/parametersweep/cell_X.xml @@ -17,25 +17,26 @@ - + + - + + - - + - + diff --git a/examples/parametersweep/regenerateAndTest.sh b/examples/parametersweep/regenerateAndTest.sh index 7b30ff29..1c903c65 100755 --- a/examples/parametersweep/regenerateAndTest.sh +++ b/examples/parametersweep/regenerateAndTest.sh @@ -8,8 +8,10 @@ python GenerateExamples.py -all python GenerateExamples.py -jnml python GenerateExamples.py -x python GenerateExamples.py -x -jnml +python GenerateExamples.py -x -jnmlnrn python CanonicalCircuit.py python CanonicalCircuit.py -jnml python CanonicalCircuit.py -x -jnml +python CanonicalCircuit.py -x -jnmlnrn diff --git a/examples/parametersweep/test_syns2.xml b/examples/parametersweep/test_syns2.xml new file mode 100644 index 00000000..17e7f26d --- /dev/null +++ b/examples/parametersweep/test_syns2.xml @@ -0,0 +1,7 @@ + + + + + + + From fef65dde7abb4b1131d2a299f9de407c0acb784e Mon Sep 17 00:00:00 2001 From: pgleeson Date: Thu, 6 Feb 2025 12:53:04 +0000 Subject: [PATCH 10/18] Add lower limit on cect --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f9b7e6ee..04d44ff8 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ "xlwt", "pyNeuroML>=0.5.11", "WormNeuroAtlas", - "cect", + "cect>=0.2.4", ], entry_points={"console_scripts": ["c302 = c302.__init__:main"]}, package_data={"c302": ["*.xml", "data/*", "NeuroML2/*"]}, From 3463e86e63d68928d990f3ef2bc3229f1816c43d Mon Sep 17 00:00:00 2001 From: pgleeson Date: Thu, 6 Feb 2025 14:19:26 +0000 Subject: [PATCH 11/18] Fix NEURON_HOME --- .github/workflows/non_omv.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/non_omv.yml b/.github/workflows/non_omv.yml index f279ddc4..a3203b20 100644 --- a/.github/workflows/non_omv.yml +++ b/.github/workflows/non_omv.yml @@ -61,7 +61,7 @@ jobs: omv list -V omv install NEURON # Need to install NEURON which nrnivmodl - export NEURON_HOME=$RUNNER_TOOL_CACHE/Python/3.9.7/x64/ + export NEURON_HOME=$pythonLocation - name: Run test script run: | From 458646d8dcc2ead0951c8a2eaf5f35d9684df09c Mon Sep 17 00:00:00 2001 From: pgleeson Date: Thu, 6 Feb 2025 14:55:22 +0000 Subject: [PATCH 12/18] Move NEURON_HOME in test --- .github/workflows/non_omv.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/non_omv.yml b/.github/workflows/non_omv.yml index a3203b20..1d427d84 100644 --- a/.github/workflows/non_omv.yml +++ b/.github/workflows/non_omv.yml @@ -61,10 +61,10 @@ jobs: omv list -V omv install NEURON # Need to install NEURON which nrnivmodl - export NEURON_HOME=$pythonLocation - name: Run test script run: | + export NEURON_HOME=$pythonLocation pip install ruff ./test.sh From 3c90b98fabecdbd012a8bcf6a7832c066722acda Mon Sep 17 00:00:00 2001 From: pgleeson Date: Fri, 7 Feb 2025 12:27:38 +0000 Subject: [PATCH 13/18] Works on NEURON --- examples/custom_synapses.xml | 6 +++--- examples/parametersweep/CanonicalCircuit.py | 14 +++++--------- examples/parametersweep/Canonical_X.json | 11 +++++++++++ examples/parametersweep/Canonical_X.net.nml | 4 ++++ examples/parametersweep/SimCanonical_C.json | 6 ------ examples/parametersweep/SimCanonical_X.json | 6 ------ examples/parametersweep/cell_X.xml | 15 +++++++++++---- 7 files changed, 34 insertions(+), 28 deletions(-) diff --git a/examples/custom_synapses.xml b/examples/custom_synapses.xml index 6a40e72c..6d5642e3 100644 --- a/examples/custom_synapses.xml +++ b/examples/custom_synapses.xml @@ -9,14 +9,14 @@ - + @@ -24,7 +24,7 @@ - + diff --git a/examples/parametersweep/CanonicalCircuit.py b/examples/parametersweep/CanonicalCircuit.py index 9dd68286..ecf099ac 100644 --- a/examples/parametersweep/CanonicalCircuit.py +++ b/examples/parametersweep/CanonicalCircuit.py @@ -154,6 +154,7 @@ def generate(duration=1000, paramset="C"): add_cell(net, "VB", MOTORNEURON, MOTORNEURON_VENTRAL) add_cell(net, "DB", MOTORNEURON, MOTORNEURON_DORSAL) add_cell(net, "VD", MOTORNEURON, MOTORNEURON_VENTRAL) + add_cell(net, "DD", MOTORNEURON, MOTORNEURON_DORSAL) net.parameters["stim_duration"] = "2000ms" @@ -189,7 +190,8 @@ def generate(duration=1000, paramset="C"): if mode == "iclamp": add_elec_connection(net, "AVB", "VB", elec_syn, "weight_IN_MN") - # add_connection(net, "VB", "VD", exc_syn, "weight_MN_MN_Exc") + add_connection(net, "VB", "VD", exc_syn, "weight_MN_MN_Exc") + # """add_connection(net, "AVB", "VB", exc_syn, 0) # add_connection(net, "VB", "DD", exc_syn, "weight_MN_MN_Exc") @@ -235,12 +237,6 @@ def generate(duration=1000, paramset="C"): duration=duration, dt="0.1", record_traces={"all": "*"}, - plots2D={ - "DB-VB": { - "x_axis": "DB/0/%s/v" % neuron_id, - "y_axis": "VB/0/%s/v" % neuron_id, - } - }, ) if paramset == "X": @@ -249,12 +245,12 @@ def generate(duration=1000, paramset="C"): "state": {"all": "*"}, "output": {"all": "*"}, } # "V": {"all": "*"}, - sim.plots2D = { + """sim.plots2D = { "DB-VB": { "x_axis": "VD/0/%s/output" % neuron_id, "y_axis": "VB/0/%s/output" % neuron_id, } - } + }""" sim.to_json_file() diff --git a/examples/parametersweep/Canonical_X.json b/examples/parametersweep/Canonical_X.json index f427a82d..eae79695 100644 --- a/examples/parametersweep/Canonical_X.json +++ b/examples/parametersweep/Canonical_X.json @@ -136,6 +136,17 @@ "random_connectivity": { "probability": 1 } + }, + "proj_VB_VD": { + "presynaptic": "VB", + "postsynaptic": "VD", + "synapse": "neuron_to_neuron_exc_syn_x", + "type": "continuousProjection", + "delay": 0, + "weight": "weight_MN_MN_Exc", + "random_connectivity": { + "probability": 1 + } } }, "inputs": { diff --git a/examples/parametersweep/Canonical_X.net.nml b/examples/parametersweep/Canonical_X.net.nml index b6318f46..8bbba415 100644 --- a/examples/parametersweep/Canonical_X.net.nml +++ b/examples/parametersweep/Canonical_X.net.nml @@ -15,6 +15,7 @@ + @@ -57,6 +58,9 @@ + + + diff --git a/examples/parametersweep/SimCanonical_C.json b/examples/parametersweep/SimCanonical_C.json index 64090962..d881757a 100644 --- a/examples/parametersweep/SimCanonical_C.json +++ b/examples/parametersweep/SimCanonical_C.json @@ -6,12 +6,6 @@ "dt": 0.1, "record_traces": { "all": "*" - }, - "plots2D": { - "DB-VB": { - "x_axis": "DB/0/GenericNeuronCell/v", - "y_axis": "VB/0/GenericNeuronCell/v" - } } } } \ No newline at end of file diff --git a/examples/parametersweep/SimCanonical_X.json b/examples/parametersweep/SimCanonical_X.json index 2c33b1e7..fc877bc6 100644 --- a/examples/parametersweep/SimCanonical_X.json +++ b/examples/parametersweep/SimCanonical_X.json @@ -12,12 +12,6 @@ "output": { "all": "*" } - }, - "plots2D": { - "DB-VB": { - "x_axis": "VD/0/GenericNeuronCellX/output", - "y_axis": "VB/0/GenericNeuronCellX/output" - } } } } \ No newline at end of file diff --git a/examples/parametersweep/cell_X.xml b/examples/parametersweep/cell_X.xml index 72842cc3..14692472 100644 --- a/examples/parametersweep/cell_X.xml +++ b/examples/parametersweep/cell_X.xml @@ -1,12 +1,17 @@ - + + + @@ -33,7 +38,9 @@ - + + + @@ -53,7 +60,7 @@ - + From 080ac5a265e1ee237907f75dbfd72f3e5947e96e Mon Sep 17 00:00:00 2001 From: pgleeson Date: Mon, 10 Feb 2025 18:13:15 +0000 Subject: [PATCH 14/18] Update cust syn --- c302/custom_synapses.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c302/custom_synapses.xml b/c302/custom_synapses.xml index 6a40e72c..6d5642e3 100644 --- a/c302/custom_synapses.xml +++ b/c302/custom_synapses.xml @@ -9,14 +9,14 @@ - + @@ -24,7 +24,7 @@ - + From 52496ba2be4628d2141ce30ee13e22b16aaafff8 Mon Sep 17 00:00:00 2001 From: pgleeson Date: Tue, 11 Feb 2025 15:40:18 +0000 Subject: [PATCH 15/18] Updated cellX --- examples/parametersweep/cell_X.xml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/examples/parametersweep/cell_X.xml b/examples/parametersweep/cell_X.xml index 14692472..757d6c4b 100644 --- a/examples/parametersweep/cell_X.xml +++ b/examples/parametersweep/cell_X.xml @@ -1,12 +1,15 @@ - + + + + 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 W_HAs`HUB`t*9EOBnkDL%5B>*+bnFoT diff --git a/examples/parametersweep/heatmap_GenericNeuronCellX.png b/examples/parametersweep/heatmap_GenericNeuronCellX.png deleted file mode 100644 index 759d2af32fb9a694160f8897c9e12641b68cd381..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25670 zcmafb2Rzno`~EGGm5ink61rOmMaW84Rw^W0X4xefMM6kRNH!TINh)P!N0CTcgp4Gk zNSXiRqUZg+?{9qm@2B@^xbN?{#(5s+aUACrs;j+sDH9hHg+f`XuBM_-p)69QP-tox z=N8v+!_na`tetx8yrv>8+xh`RqJA zT-;^0Z9Dd_4{UXIv)v{^r}hvRVRTV5a;H$1S&;wJWbV$er%>FH6g}#X#&g|RuP#YA{q<@?eDW6CK+>0z1Gc1+F)?|d%9hL-RUh`3dY_C zCaE1(VbgSARA<+_9M1RQ%b%IfqkgIa;)k`5_WtxMZU~dEcQ0|*5;tq4aw;*fv9q%q zt=^PH%O@ZpaAna|^4onit$>h_kXivTM*K}6tWpqv3)#%^|M}tT=LL>$`K~^{cl0G! zmU7dF$lbFc^h>$Qs;lW68XAnv*0HnGn3L{Ii;f_1g9X@>cWAW)ni`HLluL@g*H$5xk zIbhyX7xlY0&RH<5XZp|27`f9@caJ<3GGeJtGN9(UbSkOr+4HPU+!Bja{BTQ=O3P8U+#bm*>%o7;WUp19kyGgDS0pPy~`_2Jz+i?(|fhDBatkBbCj zxBnd`7Y~ohC!XIlwW{^r+=POP1Zo$70;v+)273uL>Lw-IVv8ES#|KD3N>r$l1)& z-`-aoGe1(b$}GvE;{3h*{J`MgCGDsBcs@QosncD=DXh&WE6aWN?%jKj9t9^Ru2T(P zt#@~#*y)|Pgi{-vTOqfpscA@fxXQtU*C!w6=59+#O{Jk6KYqMtpeEn*+d&D37KRfi zPS~|%Hf?u&tFh@@b;R1$(r$u9MMZqk^__iv!D3d`WC|Ty?G^8Bcqs|t^!5H#r)CrdXJ7D*=+Jy_tT-h3}l&) zVR}?f6&4n{xVe?@8ZJt0e`NifgFNVg+XsWf!kCR8*dmhGtEln z2fu&UOI2Mu_U&!1%9f5Bl8)H6E?;Wd!`JQR#elh-I8lv94xFC$v9__X=zo>$;_7-9 z&)j}`ST5p5tZ+wtU!p(jx^?R?0@!cs;AQn_onP;mz$sH4l${7^4Pfig)`T z*ixCK7&tOB(b0`>wDwc*D4}wvf0=(SJBwMYDRl3&~0u&k5k?yia4tD(Vkee016`!lpV`e`=s?y7x9AeqA zV~19vJP%^c;}hSxq@3HQKmI^Sh>&*g<=ecO#i}}7(alZ#`ZlwRxXkVPxvsEnBNfYb zo7Z38Vp!rMjdl4dP5r9v^}>_Grej~5m(bAAgoK7Z`}Fjrn9pyQmh1!H3P(Q{o#Nbb z_#u|q%67l0V-j|+C_9dSEW5QYZe*lW`N6RdD{<|b(zzMuqPf{AudnIR6or|Lhj&d1 z16X-vlDx+ULLwr9Zr|R-EAJC>;`{qftU)ilpzhNX$GCT$VA+23MOn__M`RBu2wkZHz+m}Svy$))n%B*- zr40)l4is9+`%Uk>$g}JGj&?8F0*5!{$OQL%{5l?nU^LY*@GBIJc~voS1C` z_w?-4Fp0sR2M5Cu&XX|`F}wZcPYitw-4nJl8EbR3j7Mhm`0nWuT7>h++FG?Qy}e!a z+e%e}S$SN34H|iQd0pEzlp*QdZZdN-^u-mvFkM4K5r@`08^ZhYXF@JsJXp$$7rS@=K6Si!`HB^c z{O8&pyQWh3y1KgR{%Fs2TpjK%4`ME_uh%S^{!uTmefxgjhP~^21+lw@W+%UGi*U@) zN!)rTCufg?LpGaI$d@nHGzy!|N=&+o668)ZA?|n<6?>0!EL|(LdHdaE^1l@*Y!kyB zZ`;V)9R4;_iu#{@$CzukRn>4+d%Nj0_Wr<(|MX}ug%3;6;I0=zdbG4I*6ui7xhc13(W+IeBKmk&uB4CB2ttUarI`AR z?x9<<#OnL|f&s_v+qdUAzTL{gC85TXo1edZc6Q2{d$-?o>?q!66|(GEJa@xz)^GQF z$i|-e@%#vfI^7-OJ9n<8hj{qu0MPC1y<{Q94&m@Sl!`27lA2V>RdERkM&6-J6k>r zT&I_7Dp%X%_V~$@@|Q1{+BV!&JaOWoV%KAjuN?RD^E-!zSP`}(wg?OF{p6g5Ow!++ zv8?w+EbXB~he+naI`bR)xZ!QC*%C@iu9=xtX->|T>6w`~H3fP;`>@hAxKB^Y>pXSu zW4)%aflJaMZQQruP3qodJ7r`n8x!PoMV52bY(4Vi9HMx%S8vsfXTsn%DUW_#ZaHs* znG(eA5G;3=HR3A1+K6i;2i&*OY`J}C+2zZZRqbWgh?-NBl$A$Y4?91rsGub;=QsPu zwwN;oYr(N-t9A&ozvibo5C4MuvH))RM_=ks6jNuV>+0&L<9%vzh8kh14;p*Iwv}W~ zs40(@&h9<0)e=hO4ATnWmGwG<{nm9mwFVA@F6_e|TWe+11@Gc4E-*<6~Fa^{U|ty1Hy`Zf;|z zmLI*XlPLe#t>=R37VW&06aj3mud$8A_{RbF4s1W~vFMbe=~!NS5K*4;oZvbb1|b)9@TvXw>cCH|f6y)5)B ztIuf1%S8QlvQOPPx^37mxk`7`wY%D)z35bbN9k@d#)F@puFA{H%fzP5+P(LEWy(J8 zN#rr!?1MSkdii^-wKw0l@<9A0B$OOaPh3^>xssgZO@EXxl;-rq1V@@s%mrQAQKe=;f zGZyc4qlaN(npp?Nb>0@WWbI!v_3OK`ot<5wU*SWCH%vLk1?5Gje%?F&Nd~)|VXc%? z*e`75Thg1fB*RT^YWD|Da~r>UEh2z>lXakQ9y)iJ9Duc zS7VKm0Y%0xLXL>p;mmvVMGVcZUAqW8DeKm=wDFYj=iRhvlgD5iJI}5Ym0eX~V*ax} zFK$Y6y1Kdod*1etTtQy@o<+sTJKMypiJsnGhj49)wAb>{{xjpz?b~etRQo?lC)O@E zwBGmXXE@KUm7}Ah2%fYkJ^}$$lQpBarq8B`T^}4IC0$^n*?yC6+Z|gsBgkHlSzG)5 z{gcW$32ZpSyR&Sb11--`k-7FY@Qjx0UuW6~R^!-%6*3c3IonrXo-``fk&?ZImwr6nlQSbj~zYdcBm? zN}!HyKaKIuV+ee6GsFIxM|e|qRs$5%oG~@Kh7y!iZj-;hhoRKyd~4=^VBI%70d__n zFeArX8!V!G_jIi~F7Ye7%ub)uij&&+DPvGwr*Z3XN5`-;XDAH(ExwNdHYf_YHewoU z6K2Qy%GeqkE@@0j8{fAMHI+PM^X`e~?drz33{fm2E-<9) zXUXRx$P&cK#>p9oGS*}0;~FU`DH4y7QA4(sPIC}cInm)CX;Xi_(`;^X6+m9#)WonA z>SlyfukQtK6V?RB#jV96I}2=`go!8hAqfO1#RzUmZ@6@rS4>Q-zcptq0zx4BdR0C^ z89AMXpEvsOYLUgKCsN3BOnrYe`dV{aXKT)3;Gp#vxuqAO^pS9EWod0~#Rld_jzDeI zl&rku@zbY{D>9;@R?PlPoJ%@6+)m;I0gS-a=D5jk6rN4Rr%$S&3`ZHVj90ddjEQ}- zkjc{%`%)hQP#i}rp(k$%z;`_)6<}>-Y)r+@PDEB#)}^z2@#Z5>mVbKU8JL>7o>JD) zv5pjaCB9R2a;449y$$hUNbO|70VR@>>$I8dRH&USQ5#< zqOnmYCPB@4P2mHJkm6VDJ9UCa!Ql46eO9;i(=T8UN&y3zS8ZjW z*c{i>)9ZQC(Tq?-(2I(>c~WgdgVdM92c}RY(ovf3+thQ^U{O_F+qhrl2?pRl$HvIWXo-?81wbAUoB8C)lVmPjyDCH7iW>owFMy6=Si5#@XJ;orUU)sW zc82RkDdjIgY+YbK*pW%DpfVBQ<5O^IFDh)A2+lZP%gkR1f}sjXBPcE|4nHpM=rB`J zRlR`W8kYv$u^iM)`TO_Aw>y8N7e|6$xq$mKE?Kf<6x#aVis!f1u4bLxD}V|&)cH<)I=PsVhne80A%$nt!()e$I+kM1?TMH1tVCAR@HxI} zo9SjC1Bvqyj@woI=4NM74&|B>jE+ixY1_7KVlJP{IFx4|9s3{z1gR25Js=?;*T^MM zYS$zX@h!~iJs^JdY?sC0d#yJv!|igUoa`JJpyHYYLO=EzO~IOCuQ{Y*l&Ls?l_$x26so#ktmV1O5VTv#YK;ip3t5mCVVxQ-7T;NIy{ z*3~+iQfK=*P5t-K)8R`A38t0-r9bK#8qSxN?w0@ag>(GUaNv?LDvp?6N zB;VUd$KdsGbgp=!y#ml&6yq3C7l9KZ3YSorIM*F9~nayzkM2pqUT=+1q z`N6|T>FkTWt{s=|KfHErd0>0~@1FxhLtC$JHnMzme_#CaIbNGn2j_$YsOzo{a2gbe z^j;l!n;RLnYMaJ#_RFqEfS(Iz8VTXFYu8hz3$^!0I|5(q(b8f8c@mCKmAAL^lH`Jt zRMNr5-Q8Wxrf#`Y+dZ07r%o{}TULX3GG=`3(S5N(K}52BZI7H2z0I)v6Ly7y>}8)R z1@itJv7@~Vg?o5;xf0<-Koyn$`Puj8=kbU&+v#_m7%W4S`HbM0XH`=U)GSiptycBr zN)qlXASR|apbP5xMK!7w0%MhfS(7nnh-&ANfUpLG5uX=Pwwe}&M4NguB94J6jjCi{ zd;Ym+cnNYExIJ@Q+u%!=*eWY4W!;TJ5jrAbgMf;`sf40lFnD7BD>Nk2ja}(8<{gF2 z>(y_7>k11|ZoPfV&94$VELCX2T4*x+(J^cqTL z%`pGyQZl?q5f%VNUOiEVE?v8pmXQ2Q9l3DBB%#{v*KgUf6ax9~(C}3uw4$R9XY-Z3z-q)ht>GvPLs9yLPPwE><;WOA^gGX{tD8)LP4?DX>C* z?wZ^729AB_Bl5&QeKXS7>Sg-p!1=y|@A`jgjm;df@9!w6&c3v9gLXR8NJ)VH+|^?u z2$Z!nqKsufzd0ssSyt93Ee(#b+30u*Y6z*DU*oxpb|m{+e*)hH9=VJ zHkYnmkh*SG+Hrn~pmzHeYf?ALM%IPYD@CU@Zf}}6#WmScVYpv3O7Hj{kHk!Rg+#HS zDl>bgAf?-q!l=>1P{ntTbXIT`9I3j!9;n{Fh5l2C@7jcf1aB4N!kDq#u$wozO$yx> zOFFh*lUWX_BL3ZK^Jdh);FPM6pAnbOa)d2ivUu?`h!DUqhlVw^wN(MSfZII0f}^gg zzX{fgmsvr|-N?vg$J>iS`}^$-48IsWUkx)GeQ;dAem(MpjMImQOD|r$ zIN&D_U`}}Gt5-Qud51o~Dx3;-4*+R3Xf9m-#jX7k=9cQONL>s7*M*En!XZ%h2$ECu z6Wxti4pGPd{OF;a`StyS6bLY;h44rim&pBR(s=wq++m^1+h%&}{ zNxqJ5*4S4qr;vus!PQ$n6(>{~Ha5jjE8K58y~wh9kT*#umumH(*(`F&8@uL4)wNX} zn#?q9-}D;RQ}jfS-{}p>qOh}HuB1MZ4(Hwe^sIoR3N?=X!yvThPJ;9GfK9gF#LWgEB9QmJ6P$K^eLFX6j4 z_^W%)2CIcD2r0fcU-;86#w+wwbpP?m;M$+{COdqN;|3g7?lBT=+!$_^m7&kqlS}WE z(c;ny*xYhAwJcG8iK2=@XwSjV#sBk$7g?{;C$9b9ABOyFUb70#lh)$;d#4&Z`+GX` zs+XWpzlj1X%uYkxorM>u>)C)3@kVdI{$fKNkwv* z{HA>A7pkkbuGB0ia+#VXy*=ytoIL69dFjlN2x@{yt(La+>us^vZ~fSCbLjI{x-EwH zC@4jsY%Hwb8N;>a>vLjJVU2dzi~`Z7s$Uh-4_3lDETz86H4czelo2buk%VSwjI;m*`}Dt()pqtJMplvCT8bLZ&5 zKNXqu)l^oRBT}hetdsCuy7-CwwX%|xt@ADMp>zWp=7vM&+)k{wU4-^?Ub}w%Jd(OO*e-}Ro8C%-#Z~~#OIy)h?wxxNP&Zv_t(FLUBf8M`Tm zXslo+w(`!?zwT6*bXEkXDhASrT)05Jj5W+28%}+-jq$bBLwn7m;_8Oe~*{fPH}PZG5_5{0rPigxszoRtuX(rco|~qP(pbD~*|LZk@S|!v zI=Labn-*W?<-zW;Udi%+!NJ&=YdKTUq~xJ}B5VKNPJ~e(M40-ke8R)Mf6w*Exudns zf9lsUFK_RGbs?eV?yE8AL3srQdq4*L8t%w#KV)EV4ievbK|z)BTI$OA1)O#?=?331 zB$ze8s>(onge)V4i`U3!n)A!nndY5U3t1SAu_Jp*)TT5EFR|<7ka_DJBRuL}z?plf zhdAQXU#^*dG-gTgP#_Zy4u}d?%0FY3Yb+{6wk-J@TU>=ld9NsT|9!PP^Fe^iF#y*iJJ>-BfBKJ~-B>ZUwzG=5G=3po z+$eczL7jipT?mhef&0ilY%$~%WL&sGcX-p4g#akoN~a#+yP&G)3C&-<_0{m&!dJRy z4Ojm2G}7T6y)qVLD%gz#doPkl?Cuv;k1^Qy>PJsK!K5O~negk}xpU?qzVw6lATA^> z?CdBy$PmoTD>s)R6QS;6Bx()tT{%dM?^>`?Cy4DNe{qpr)(}egT2kJclkvpL@PR5zNRQH8loQke#1DpMeg> z$H$k{;{Nl;k4w?f8Gbni)J;?^jAiy0t*wmN&>1;6IWNb@M_|7Y6?!Ll*Q`)o;7c&P z>lLp>b!a9ljQ!Nk&a`jaR3T^<#ZQ0C^~Q9K)@Vlq$ARn4YqvNYzD6~FX4D;&a`vUg zl}nIIS`_=&L(C%t5=fgPU556OitX*~wXF2Zr^{s5T}`TsP=950>$kIQD7AjrWXn~) zjC{l*DeMTnay@DkxPGNy910e>d!-{O8Lrh4Z@3R!k4$fX@GQX*FZ{g6t+wX}(?v2v znm2{jH~_U?#)#2^tk{F_<~ld)dk4w{WUxx;E&m$W4T@k{AX$l^l3a{DEn)wfj_|P= z+VS(BQ9C(^MRC>Jsl#_7em?%JNhrBp8|UiY7R0;?tQ-9_B)G?ZGcwQx8Ni6s(bEe+ z>-L=-YbyN4Y`YS+j1&!FgdVV93@j{_KwN-+;h~(uU8#}skpDP28+1b+*ge%JD z`@0xvWs`+gyE#w#&N(RUM67EA`3n<8;we)fAK8-WADTYD-q{j~x!_6g8hI&99cM+8 z#fE8Q9tf+ahEDPG^D{6qDk>_TZJn4866^(+ zWR`=CBuvzKmNfxjUs+MG61M~>o6P-YNtW}jl(eHkbHm&@^+#zsdQtwz>^iwsUtj+o z1QvKIXt8y?I)heuY;D%s^olHchTz)hI4vP%R3*^3`OcZo?@@KD#H2nAP0fmrh3=gY z&%s4^_P&fWEOgs|8BBMNT{%M1X6^ExzCJ7DD~OycSh;teL8(Fnqt#&8AVQ39P5c{H zGIn1o;oNe)6V)Pd6iiP~n>#y4!fe6^P>=Y|)fX@APM=%!g9$E*&)>gC=*a)6{Q2G*W~!O-@m&fmtLXJEW{$y4c|FEM!WVvDeU}~TdIoGe)-z9bI5L; z@Fe^mYu2HmXryzXI8rqyq($o`!g-%4LYd$=e>4qs6EG4 zF0$c}621leN_LIbT!PL4#fgn~lBTYui&rM)T$r558vMHjI|_|kVnhy{X*S|RLBSMM zF4CD<8vTp*f`j+9pA?q?J7|Mjj2|%6M{lcv@J~Y_f50-loRGi@^^j7AqCF4#zDbc+ z)8~oC=g$@O^e$J+AL-a0SAp?OJGyj6X3yNV!u`}JuDGq6ZtvE?Rz+!k*N$9kT3Qle@($*3-Mo48b5|D;-*)cWRZ&&7r_XJZ=5cML!9tc6 z?%wa;bMkgA)Ksmh=KE0mS6|tn*|N`~tlKDlW_ntp;U~(ebJw!G4S7WcteG( z4Bh?f5uq}&Fl(LC($noFmOk(Kq2CxM?<=!%tBK)Jqg7i?6u=v_BXce0NNXxegw@@hMbUNlDbbS8Mt5<-~wRVOzU44C`xc z+C~;i$;_|A;k%kUIeV;Q66)~OOW%v# z_(^9Z@(UT7dU)%Z#hFQ`0<>wF_R7^2F54-Y6LTscO&6>y3`Jbv_ayBKZwg~z)f`L| z3bc4+Jj%W{XDl_n8@roCIB`!T!7?~Kh>bwv_{Ya8HT{U?0|r|cBG!S|1r^jVP)D>B zkiLhzR_{{f1lklAQnc~*&Jk6%Nc=aCoS@JhibYP%(eoX>P<=!u3hnLfcY2RywoZsv z)DT2wY;a(#K06PN zp%=(LNbST5h1fyp!?cWyiZ^doAk?Au*3UJ`h1Cr6#?kyps)pM!;7pBj2XarS|LmV7 zdoOZ71BE);-?SdcPXGkh*|TRiw2C*MkDZV9&3blQl#>gFG!>T{GgEq>QqIAe;yp2R zY{cyy89|u-7Alup+4_sKsZZY0Wo0u^7N2LXRa$^RF?H{`sB$+d3|h4UJS@atT7c>B zf>j9=F#||oLPkD+{(J$cJQ6TePOmvg=a|(Ipe`OO2wRad>{^u&ZJ zy?zil!Rsfhi5`H1BUpr;GfMWJ5>cy^{ zI;!ws>#A%P?hvsR8axUcp7kj-?tkA{uyG<^^3{$w{l%L_%xuoJkL5DHE|#ji5^KUC z0o3c%QNjbtS{349o$N`F;#|irAS?sSRI^^j;@zYbkT6^s%K00fjmtM~T!6e6VFg*Z zHB0O28Xlo@Wo>y@c_4g2+)|Jz8;e!9Mk^=l+BxBkt&K^Y2Y!sWN!sq)fUaV48Tu$q zK8v_76YVH2sR;6h$exI@^n3U2#j2vEU^60dZFBX&HJ(`Q(|t$8n#SF8-1sc<41%g> zgbG#kvtbu;xHR!`RY|# zii?X&*<;skHXfd(kZs}vQ3l*snbf&%m!PQ$WrV4$`$iJLMtN)NLEjgxtt$cXt3dsG zZZ-QR2$!d8ThXcQL^43FLZJ}90i3?X?t<|DR(draSu<^p?bJ`LfD3zrmZDTP^ZS$D z@RLR^tX2ILoT&s7dwhR?pg0!<$jGl>)o{MXl7i6w>*%8FClk726Y`2Mhe&A@8t--m zL2G8#!7)X$dUh6xTPy@18QwFeK`k2zbpZ&NT-Qg3Vou?^0@E z9)Nx?id`8WfbqOn8E$-g}nL#p5d>F`naBKA(i;oqln7a}b^pTJ1gmIX}1p znepn2DJ1m(=n=n?DICD#h1jW5YM02=Y0dHf=#8gC`M?aiTfxpQQ?dSy45QnL6RL^w zz7oG&LuBz{Ye3|LRcrh>pW?}3eWyX);Ms8++q;XVC?BI`Rs#HsJX$n-fMJu|-ryB- zbAp_|n)a@i=gv-eQ9C%?IfMiS z`wi~4>P!PhA;YdjP}BIH91mmRem*>;O8VDNPao;k;kmfPtr>{F4<$xOZV)|t7A!dNUfr`$E*h;~yLz{uEQEHads8}~L@*4bc0rPEnKC>5 zU6Nbg$FR@M^MjZNioRJ}nQOj{H`dyHbk@3(u-5}BT*BUrE zi0Vu{SePhfl$_w;ML~4Llf4G0%Ppi8a|QxjGHga0jvjM*ofg{g3@OA&KzV~AG>7$! z-Ya+Pc;qIzeg?Hzb4?yi@L7x0qw^V zE?y0#xtSffI2K8tupf*uX}4|( z?A~o=y6vRYKZ>N$(@D;dTMk&!hZCO!`g zFu@gMXk)@Xdo)rkDd3)_!!=KRvNK+U?jZUx#r2dFFH z?x3NdMtO`rkTW$rx2|5jI?mL4iZI!{a^7Y2^~^~4C{HB^W-t)c0Qs^fEUo5w_ zwoXC}AkbLMZ`zBPw?V3qYynGls(Ycaup)7rpiZHoKuRQ*YnQQpy%+JjR)OS@S)$Ji zLyH15)=`M>YsTgAs4KF(JYoO|U_#|49%*1_e#q`HY@;j)(9f#Gi+N%zXZ(7$WE}{i zC6qJZ0#iW05@k{sCV*)W2;|a)+yb8%;k^tj(}ja+wl)0%+jAM;7oXk%P!|kkRlRr{ zA0NfccYFnm_IKtV7fz0W(zj@bfIC9v=usgP6BCK*5l~4T5K#l7qCDaYe*EPHkGyAk zfCn}xT(M$Bl;JIAij$L*u0h%qw>o{+?%Srt-l4u=%GI>AB)mC|j4UlJMPU(tK4g~l zhVDiS9n~X!M?->w4)vN0C0l}OuX*u4o1sgJ~SQ(U^MmulUR zV1&!9rO+hxK=U=JRO>x)VpjBU61_QWY<#1IAKN5KS60Pz;-zeG?J8mlgmu)%*HM&u(WikQHJnvHS`>OJ^exSi<>lhURo>&yUPo|=jBV6&cG1R38tTN2BVYJb?CA% ziRjdGl6S`KUW-rg|0wH@+6eyV95(lwJ6cz>ch`gbu(T8aBT6G{+9WR~#-5dx^_reY zj7wNA`Gz2%m;5w$2~#kf)LEM4Y?_MN_-J5tr%=|fgNFF zi3P)@MXYxOoud_i;9oGrMZexVdcWkcd(hIfnkV%Gx@$Jdn4pSX!_mh`{eZToQ4|$c zgKc>OzNDoB7AOMr;j)jflQiD<3i^C!cemA@F6^ln=l#}KjAW{QSr+1a;}5iJioNC9EgpPl~*sv~)O~|6Q2*?R#$vZ~FACpYE4L&XMVTA8;!A;NToWVk3eG$PNa8_eb3tc~Ri!dn;`|TpGCDM+EG88BLQ~Fl z!#9%Kw>O(V!?H741Q|dX02%5sz%@Mv9YW5s69l@w=Imp?w6 zN?}U&}La!j9q^hU)g*Ww@a*o08W>s}z1!2Td zh$gkKZTtL&+dMoPGyH&=Uk{m8_`+rp1-8x&E?kh~9~py`g$c6d;) zJ^T_wc&MtyDY)B%XH6D1Yb70)lXw9+PEqJ8;e11o7qII`VFVs9IbL`r2}T;Yqq63- z(>Q<5uGw&G^ru2p{K5LLZyEjmsYPRj?Kk(K%Lu#yiQc4*2NfthZ&sk!A^qRP^MA|w z^ZR$^989sE@N04%$hI>zHZ%-@l4*Za6R*&i@j73q_Tv;C)*12OBCJ>7jZk+5!Xb#p zul@sfTeG?eqlaAb?9-WQM)%Y8gI&BhSkkKx-W1`yXlZ%?epi1C8n_|X5wX=TV+*Mi-Fa5 zcwtouluWdr=6a(G=YI_hC1-)dxg>~Ar>RHxZEj0S_J@Pky)P|D6^E)U2t*3k1CyNn zHOMBNV9sjL8g?0F223C*QCFfvWEru+F<5nbDJcca z*M}Pf1wR8^ETK5Pf4~U43F?{Uet&vay|^J6Hji7c8+e}xmzp>gK)AANWKk2{1_MDM zSa@{uTW&>N-MlRviD@Y>9}-8Q6^Fq?m`hTx-S$jOLWye$%nv6`1!Cl@LU&t=0z9Qq zsh-ga;`zksfg6qTk6K_=L73hH^oi|Dk-fWuiG@YN>kKBR_b%H(k#hySai@TJ^s`1F zQKujo5ThU5;*wHF>}OhtzZu@*n>$?>p~yKnJPc0cNiISNdsO0pKXc|ler!IWbitev z7ddjI7*uZ0lQ&_V{bq7kTjynSGbaXsYYM*kEcf{}5$+pM_YmDtcT5V2*PsFg7z~gK zBy;Y&A@PiaY7{Hq4DOzKn}{1-Za*>DcJ}jUbF2}N^y!s$Id~$EZ>>v7ALP@gyAbHk zgMA46v>QGr&^YvD2N1b|@(LDGEFa}Qx0g?6Q3%%3EyuF9e({{cACo~UyPtiHd$BIj z`W2FvCOGa2Rs#&oGdwi>Llv-)i9&Kj*Mj-%^dI`rWb`FH_WZVz^bM0n;NkXSyY?b! z)Tejzu4nyKvhJ|8-pf9xu4`ezPXYzn(JVlC56mDX4U`TeWx-iq1J@Z!>$6ySosi#@ z&^dyx;H6MJio54wEfLPqz0+MCQ32#N`sri`zog^}__bdDrI-w|QSp-g3nKZmu&5wz zL0dZixA~272CY`0rdN~t>>EO_*wGiOZ|*wTz_-3;)n>z_*{L%$w4b}X0})b^vEs4V zgTcj_Bql*YV8Z@_4MQ1A1`RkmS;|;Wuj{)d%f{C5{CX^eYSh6A{ypz1Pq;oQWthHE z07P?G77_Us@!RFtSjNw;{_(=lUIyNN{rc7W(>e+WL{ZC1hP1S_%nA6{n1GO5H_E z5>_o=PFHAh5nUgoC#I~sH;cGqYigEI*f=->P#5yUAUZTOL^%V}8(1yki~2fjSRzHb z0`kLSoeT>LSB+=9a4ooOLgQ1TvRh8nz>s;}d*5H)d7hj8s&&A6sb1P%j{fa~Y8InNf!*%>({~ zyfXl%em9cl_BlbdRiqgeTGpG~D2)w(y&DJ@Q~Q8i7ENo{!lm+s!BNQQL>obv z<@TZbfa2nNvdgL7&b_cPmncKxf(LX7>4!lFIC|7_Ol@wo?2iMMMtOH0d_)rB=5Nvt z{P`K}xSbd_%>Fd$g8;4E8+=!@nqNIfi|jqGQA;pb+DAs&ftEl@VnZM3yS3x0M!>&$ zTn3Cbp)=t~O1=alUu-0jI_a8Nz0)Ph+YI$Fv2frb4dPe$D64m!*j#;)XOrh@ygGd< z^+78zftPOpH4qJH5A2#!Drd17iVxo2F+54Y6{oJDT}1gJIjQYB0Yo3iwLu1fG9ZTx zfDd<@m!hp_6K-~?0@*uA)S#)2q> z?hFZ2xFk{AA|rktZIMQe3-9>Nh6&Nq3?gGWFy*Xso-}bjx*&!SA&wjjF;6~cyh-SaW=0=_L5}eXI2O2S(1z(roxdjg0SDS8td+<$qUeGG?|9D& z^L6>12%T*S+nyG;RwSo3VrLp4-rBwSj@cA9979quMxhX z_F`sq*yMe^u;2=?s_7T^{Q7z^1(1Gk#EcRHAZez-lLJ9wjQ0&pDaI7L#j*?!%Z*NP z-rQp)n6joJNvxrFhw884gfd3TC}oy%=@&zpBE?^0)ed&Opy!M4C0QP?63o=9Hr9%o z7e5X-fa=<=Q8-VX2uf;S|7}t_^J^_R8-hqbXx5~hAqQAM1#BwRT2Ny5E0)sLzStW) z^P_$ng!N$b=AmMPeP;;;uIg%(hMrsh86e zqUQ%K6CXIH;&0x(6cv^3UijBUHANTo99bBm`_}&g=?m(L{wC3~qt&VrTtV;*lAd)? zgcUF2c98ZZ;>AUuep8{zJkZrkm-3zT0C%5^M28kt{`U`$F(bB;MkypundrZ(%VgIb zEu;)kbEIR#<oR5VIkdvMH@D@>v)>K)7r`NORDBV6&dVn=A(BfI+V5C-WZnc^3bG1|dm+ zL4p8Zmyy0R1mlQV9LIs}PoK5sucZ)ErG;dKRj7iN&4$F?k%&ZHfC)k9ks!U8)VO)) zE&N~i-16?<4?r2iwul-v>wIH=Z5i12^z>NZG5XQ9Y>H;%n{uaDf(1ZVIJJ-LP4QEM ztB+)#?C@O$nvmpP(2r*cN%H2+8}ptxEe;7#qa=NXhK8au=8fYUL*g(>r<^HBcpH}t zVm%4$H%hCTWaVHND7E^HABs-pYm={DOH7PJZNm>Tbl%QH+^1_;qhE@=0UgPI^?CTg zlIMboIJksn#H(u_%=%Z)HtdK+Mgi`C*0R6!AT^3Z6$SGc3-LweYX^YzX^~VLyB0_B z^DR1{%x=ujo^y%ebIt3<+?mpx`(od8M2+b7PqQ4ZU3K?9n~RLG;*M^%Q|f9mDt>?s zpw(?imrhIJ^qTEQfgKMQr>Cc{5%ne`VRL16o%KIX3vNV&`1TsY4yo9gk~{iE znX}@zOQ<^rfc{1}4HVx2EVoe^4=-M_h}KE<2fSv#S^bAr;R)C3{ZPls_S8WV8 zko0%zQ={lOr17=Pkpop++&0HZ&03M4UtkNKW8@AL|)*XF6-CmbgWTjo~H*IEPBm zP{A?P-PQF9h}11A*?>yg%m&RBEX2RAiwd2)Xg#1cy4~c@T%a>s6;En@etxp9NVt3C zobR^IPfiMVYvg`hD-#zEteJ$!TZRU0)KS%>qn(1*DS7ykEUm1F&;o{#P&b73M6Vo0 zHsOmXmCA%>nXHyAGD7($+5lep&WYqj?V!PsXFs?A8~BqMXO9@-KTfzQq`Hdq17p1s z8k=yD$!-I0%8#~4#_^I6Fa1U7zk6~1X-N4={v(;;2i}T z{ho7&{7vYP@ZtmPRsb31ot`)jt%O2(-P|n6@h|Aw(YD}F+m~pZBrIgCh2Di2uA`9K z)7$SB?Qdb=XIry|5syI(c!W`IdV10s2N}>psTS{|&02k{jSF0swJ8&&KVPMFPBnNV z;NCbRb$GcXLD596CV3YPdr}n4>i($-{j-0~asjJ! zJ<<7#h9UPx()Ud%tJBEu#CZ`+pcN>@cljc2$1+$7LDDawpm$j*Sr_3<;b|Fl^}KN^ z(*VXiqK`u-b%EkQ40}XMgA?u*+JyfD@BtjR<=f&YhUPx7cso)#H@)AZ8 zREDbB+N?4j{bzuMK7&$edw6W^4XI;HlzR^!R^tr;*dp*yEWEO-L1I?{sYY;KqnY=% zt2sn@(Y(R;%n{&h{)N-FF|4;BPCFP`Tjzbe`#K6r!yliBkzQyGkX$k57$;`wj=%r) zyDoezhi!7-bvypB_gq~6_y@1h&A)Q3z+d0&Wb2oEF!nB(0dEEPy|m!wxy31@c%8~t zM)&#cllW2E^Ig%U^fX}^+MNb;TYL4|vEQ_!$2_6Z_b=)j9v;inx=w++AB-QY%HM z|NpWaE_APyD$zQnNnXuleBw1KKn_>JLP)!_W#aDX{cD0ViMVZYzQTimDjbh)Qo5U>a~v*G{j(eGN1zIo9Gxoa9brKM?V z>604eu2F7=bKRD{BEk3sr$GRW9qyIJJ0QC)rjTQMaErYt7RgaUhDK3xk8>W};6rPr zkYe@Gy2jRPR=H|E+6HrQ-rhs=CeK(aw|_P9F=V{|Iu z*W`H;&X3j#&h9=*-UP?ppyi(!Gv`~|#bDuMTuVovUM+#Q65GuwaUcw@73+jyxfT@xe3K(_?qpvTDlif zma?CpJV{yLfOv6;)-%*iEq$O2h-1?WEf$w!VnT>zIpGZg1f^qhK4cKp13y3fF0gGHVX|=(iIZHr~a!MW3}9mu`!PbI)*co zp5ETxv3>Y9q3HX?lD-Hh4 zqfl{9rl1rP-+)_Mv1Ind8%NQ``c@AABdsV7gHL^@9!?sLCRR-)$nH(n1!O2OnGmC& z2c=hTx2;LV5k6R{w`yi)&EU@ms~rr_3p(a$DM;W*`D|=#N%FQ}0l3~)RaXlL3Rd!o z^zX)8Y#R?gD{Tq9t?$dCv+>#HwLWW#?m{N+UY@H~T;v9C!;rO*!-U@lLW; z(Bt1$;=7A9z$3e$<9R9CN(c|~=I!r4e=I=Z#Yot55R)mf*`RRW0xE3N^o(pM%%IuF z%SP8kh^`59wLUJ)H_3HoIPv5P_REV&ofOc^_?|ZD2JZ$r3fu7(!+LncZMbKXUpP#L1vd~}X=a3ds)c?;+aFHi9ecm*z z=Eg0sZSj9(kuT_5TfA`5O=tYfo+Du~|6d*DklDV`iD0&r@}Ui% z##d^niJe$hitHHBFQB;eSKAE~LSiHGH3ONKahu=NDq zCe?Qt&O=l~n-Z6xHlitUvZhu!T(nj)P`hwA8&~=aqZTa z#)XaJ?=u_&5Htu`3I+tp;_Ip+M%c~aDN|i&lxpczJKxwTCLdh$n|pR$VwKgqckeQf zJe9(Am!Q2p^^@?99jjpN@{YE0bYupLM5|&gEqII-?a)AQaoTTJu2?~HM)k^1iTOTZ zQ_E7g0`| z2R3Z%q?Hv0C4O-JKVKLlxeBD*kExVZ1W{gvJ>3Kv0cRksgLJ0?DtW#tbM(eMh9uMo zIt0Mu5{`PJ|HwszY!8nIRl?dntdXPAvj27e@WyA;>hMzID{54srul|TYrFZF{@)M# zyiz5oNJ?4g;udJ227f;d$yh(wS{Df#?(XI`lE38>aP%BxW72woTALi+L?~4~(qj8R z3nNpz?E01;)RQA%I4YW&*g>`S ze|owDRE1=NSW9C$s*k3kQ|>sFiX7&MG$r=y!=^_+WP<^8qkn6`$YI>gz2Bb|X?ib) zx#g<-`GtO~f$r-gMoE2_Jen>t-G@JsoREP$z5zCFVbB>HK%rIvWTdmcGzSU02eGUQ z3Pj5XgwK|my^*|Iz@b)w3aCN~Q~?rE!B%@y!_3UQ2MnbOQVy}rLCnrTmAL}k>!q&m z*FNClRd{JK|2U`ucHf9@D86ivy@`I*gP8nNo3!3{mfM@T)B0;ETd zAV#P|F9OyM1!OI0h#a-?#IT$IxS>g8SHbdAGtL zxdql+q=FQ3@QVrvr#;%*7bm%ur#C|)KLB>^0BJbKQKhDvjqa;}0S-fIKGZ+udmTdx z4j~lwHhUi-V!x<)*(p5@ZOjspy(_nLmIGm{3x<(Z;O7K3Zd7NmSd+Mz8n;JK5v^s* zVL2XnOO4X-I&~^ECT2Bbs`wqqXH6h@^doUP4J+%L3uKOa;P2T4@ewG>!@giW){5Xm-%p)yTCnLS1x4x}Ke8>WAfwKV)&) z{r3Id_j#WCzAv(qV^5~@a*Is}6jMY6{i>t0Gl16@#P#0Ykgk30*s?m3RN{V=-IhW% z?AY?(49IP)+#NSFIHykGx#w7tx6o^K-71&Tx8B7}h5H0&e0ov!p3Rp^`zVe-_<0A+ zmNhW)gnz{d+DEOHq?n?qJyeEq^ygPp1W~aEKXYPM4_}Eh}_sxRa!3r zugBSpd38wgg7y-FJ>G2p=VNvscvARsL(5#<$hr3~%w@VyXFvL)sfRre!I+C~${;cZ zrB2VbSI-QJ1CM#cr3vllQh&O2E6E(}AGXL~Fpa)_{Th!lno!Bkg;cosGVH(W9%70E zE2`+sc3@U}n&$-!oR5%o!1A;?wJoXL&)E=tuk78_N%@zMjQXrTlX}X%bR9H52!@5_ z<(}|4%CTp5v18S7W)&!6I6YHgRu0NaCk zOdijVan}vHqB(=wSx2TI`byvUIbwUHrz~V$_8wc-?)mTdMY*PP*N3ZIki0_9`-Oc} z`Dg|QlHYV0`lYS#jp+{EvJa*tHIqxHoFB(hmq+0;Tu1*nkG96hRL{s(;6gE_n)G=3 zk0_T7+$d4e(FTbUVIv*N)g^oqY2T6Qm&O)+8Y3gCR4w35?k8Px@7Dw#qoSp`hZ^=QajpVx%pbOdGXVPphU z!IxB#^;MOX7+~`$KlO|ZoERnxzW88#Wc`;}4)XjMf&?GsjR6%bW-Q(1Z0L!x&{{wK za%_J4ScGdvl0NJs`-ARUDI(1ogFC9?CXULY=n;>l4SyJ4Ur}apr#T))70gzsjNk_LK>GF62ytkU~v?Y*Gi zcq8!#;u{rj*=cU_(Qj${k58#p$ekj`_MFVNenI?uDN@0`4$kHRM&*f25A}?44LRMn zlZ_}Ss)d3MlY15K!XSv0g1=$ojk}m06+l$AcX)x=MI-c$^*12ZMzZgEVHA`bmdVLw zKNBUS9KWaP>ZVZ02=+;A(#08IoC10KBlu=Xt2V6dH^|={xNTZevxHj&;|wfwI=%&a zWL#hZ`<;3Qa53Y)3s%^$wPB5MlLzqvDsYHM0;9`nef@{XCC%9mcnT}{P%GG-1$9de zX5gk;+%(iD_txZmIBfEaas`-eXgG#j2W(Jo>qsiEJeRAiFq(HsHR*3xb;p*Pk5}1x z7VsZ3Js{t1%Llp?*u4Ue zT5o2w<_nmZ#%+(8U$$;tWWmpe*|+A?eaNT*1Dtp~5WkGvjc#EpCgA=R%D0pVra2s| z%-#ZEc*%E(vQ8uR&Z0M%gdh(@z+VfwZ+-aCXeya}23>?VqTtd?`9q-6fzPL(ot>TJ z#Npe=B@0_zrp^=_5^be|&{H;kT=F(}TVw>1^BYQIx9GJmP^`x^LFXI7a+Hc(Xfx74 z3xSd7qgJaGu|H_RS>?nPT}lO_TpqQFC&@p4PAv;^Dbxo*^F7-wV)dddgE|T1R$S(} z>(?96f`!^Ay*|p%JO+gFl$ttglsP-< zuCidZzb|Z4QdQwh%*MhcqLZy-+Dxq*Az$G$6Tc#9ja~`??=ct<1hiB%wYA}&&N@1f z1>VJ39eqMD^NgSo3oK5J(k)8<%$)tq)@XqZ{&M9r50SvI%(t0Zx7kBrhtK-IJWgUca(cLFy zIdfykAc=YSV) zpURrXk-Xb-LVTR(oC@~GbAw4ZrGsz|N@Rndg>cSP7M4I*S;(rJ!!cS)I?jJ9edVgI zw)}DGgqB1a(`z|BD}BQ?J_Bsiz`wB_2o?XepV?H5|9fyxPoHo0dc3$m+24cT>7jTj MYKG=eM9SK~01oZY)&Kwi diff --git a/examples/parametersweep/mean_spike_frequency_GenericNeuronCellX.png b/examples/parametersweep/mean_spike_frequency_GenericNeuronCellX.png deleted file mode 100644 index a47448828fc77ba6a8f1b8962b51a26333a771bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14252 zcmdUWXINC(wk_Ii+va0H6a~9mFc1wSQNYlOP#{p`Yyh-Cf>3~DvuyyBC?Y|i$WY`Q zR8$m1Buf?%q{spVlHXX`eNMl3?>pc9-uv<1_3OsKuD#b@YtAvp7;|z<^@RM2rQAz7 zI5<`)9RHol!Lg9S!LcCq=b!K|wgw{~@Y_E6Q60LvwHe*eB(_KEBg`sEy*Zeu4cDr))93q-7K&x(rucsvU?Sz>cs*N%f@)hY7-f>^m2 z8V85uMup!GXd6`QXs!VYYySBiz8sO9Tsh60|x1zb*gAf8pyzsk}?^ z;Zae)$Ebv94K!t%?g`p#xRQe-mLt6}@eY@$fRvPum6c?X`|mnwmuq5F1o`-$SDA8f zTvC*B8j0#{V0x5HETKrK<~vv_G@QuF&d$D?fTeKW4-QVackdtNpTBzkBjEgpDQ)Yv zwzg~h92^F3Dy$xN{A7&<{y_fz-{GqWS3vihpvW65HpM%$dvAMr)sGJ}ub37!E;3LK zme6GP*3}g_+0BlI%@>?%KO5$zwar%nza)~mIXH3z0+&+C1BBIGT?^K%S>qQPnj9dk zFCZdvLRVL}YrH+rKH;b38^SwEZdx=X8}`;E1mY2lp`z(zrFP8(Emp8~k(!N7N?{Ck z)!+}xb%xyhWF`0R)7NgS(@t1 zwp~23>cH?Nv&vAz`1UyUn6a7B%DzZ%S!$+voz)8soZ}svpcD-qo!E>Fu@^62>NT~r zw5;2-DWSHu)^B4W+x;WM!|#@f7N~aUEnT`)Lsj*p zQ%G>Ieuvuvj!PC7f&?k!_W}ZoYMvJIR z&=x#!phZm`*(UPRL?XDtOXOKyS9f<=X{kIm#g%_C;vlx?b2i@LM-Gk;KmT`0%>TFR zwbI7B!d=@TT`04ZKvweBkxSykuC?q_Q_IFe%`!rHaw zxvjo@e9=_w;Sn@0sGWQcf2rq1HFy%I%M);8`NoKzo^x&^ueURr>}+kt=sl{zoT#cF zmJ4LQt*(tzXVUtY_?gd zb(7!sHJ^fcb5>H8Wpngad9PT*dnI*Su9~EmDa5p>PmCi-$p|!}#+(Q_uZNer6q)+gXGO}}zut_~{oWve z*`Y=j(2QhG?Dijk7JvY zd~3dAAbsHS6SBnsU=C`Kn+0yE^QQg8yN?W76nvr z_CR)fJW$$Sq*|}4s>-}IFB9-DtRMh(q$&nH+n$n>4n`DsE2%DX$(279F)chLCFTelaR*8V-c?7L?RfSl)+vbo&I^+6{rZX(rZ3j~?x9&St(bOYeRgV)0(`UsdAMdd(#q z99Ef%B(6+!E2gz#^|O;(T3hYM`x~hPXDdTBRaI4Ur+-|uNHcbx9ZvuFd`XgV@m%x- zkMiG&ga3oo*vv(oD=GH9wfDoq!c5D{%hgRxOyVTuds(bFtt7pj{QNJfwW!nx zKfiS^oW z2M$7!r$2UfieDT)iI<84kx*1rq`JEop|A@maEqP0H<;Ha!oO{sqR%mJ-Xxr~#nc$9 zw<_{xfQVsy$bLujxtU3y7olefq(q<8)%4tXmt>8WI zKGa_0_`j(getN6ok$s9MPSiiYwU*tRz>HV$-KJOQocXMzgkJ$^l_r$6arJ67^F+^0 zlD$tCZz86^b<@Yn1erY(#q)){?q5$~6LzAyqF6Pk$jwI0PES}M*qgGg z!;X1!Gd_p9ylt~b9JH*_k{L9?cl5H(2T54BB_btzM!L%5aoE3Y-O9ZJg*4l>;Ux`);O9myRJ-fDqyd$sMn3^Zg{(3EOtY7MGo%jCNWo6Yj zx44tS(Tlp!+n62`>OMt#@#4j6lRXM~Q2!> zbIsd}+=9jd`{p23|N4;9HeV5=0-b1??c3$Ce2JY9aZhw{H);FcsOQh0Q=i7>u6cc85HKLJ z$Zc9cP>{kUYE&D3=qi2q!=dXpZ#G9B!@_Q+Ixn*Jd$F|b8_*?v5LRexY-}oW%TG&7 z)1XqRy@iLa{-oJ`j~w{x-jocp3hot~rBt1qoJPjSvkt5}kvC4+N9t&-BKC#$=D}{1 z@&_X$BYq(vNn!3&uhR^3Y@YJ|d1j|rD3;D0*SR#(&6Hhg@g5&E5?4|#T)5DbYZoJ9 z4ytb>t<|1h8!5jE>2_jzVn`c>LlfnWIy8?`nx%UIEAcX8S1%yqYy(uARk?g<3LXEN zTxvyGJmVUNKVFJ|)9Vs2*WfRxeO?nK`I35?v=B0+&r`DPouOkZLod^u)l(JegBaY# zvi6t`u2=^CXTyimyJc>8F+$BWO`G`AjuD~W-{BpV?OwRa+ z#Vh^t^Ya;nrsVQ$9P#u+;RPzN>7vSlb% zR#uQ1lCJX(t`dNV*gWh%lz;#`4~#C~VW4{P7T0hHrl!R2d?Vc@z{l4&6II-8iWQS3 z^@!3DO3`ZqAUxr{vS6g=V`%J$7;i5CQg&e}sc+)y1ioM!!HXNIgW_yt?e>5aXQ=}1=s$bSCNU<(t2bjHm6bA;X-vlc8 z7+PNWp_l@VMw1Z!2X1{ou_!IWamYyAyf#+JCGwbOhR3}7UkAC8a_ZD6MI|MTQ>Pv? zl2TGsk+L8T>9jwiw!wzbAm}&EVt2Q4W-H!itMBV5af|x*1qaD)#MfS>kB*MAtK_$^ zK0LkZlWb_|{PEUydMS@1uF!sRmA(K_4*r@oRp!IjdZCoZxjX2rfFarHgjjr7Zf5w1 zeb2i?PoF-OzVPu{l!f=9Nr0~9cW#Ic1bayM`t_pB$g8b5&oH57D)n*d@+iw$$*b^s zj}Z>(W);;}7A+fVvS7Y0=`3#lhzdm;YAciwCXBcWdCo#XKwS{38SLs}%*?n3uQN6I zuanA{+A9yu(sjY?^-@k=PD@X(D{^zG2-&ZVjZU35xa+qru&2c_st_56;>PX!>Kolc z7|6_>va&}1BA@F}CLv4XP<2eFtXuOmfB0#+>gm%Fq`L5L-wyF%q^P2zeeq%rAIsZg zCX&R$D%r0GJ-NlfjD5++QJ@o0mmESWJxvmuBQxR>=sWk8R%`8jC7-m$eXD|`t7wM) z9mOI2#)*D$GtGy~K3B5;zU*=Cy&3w;S{1cKd4}6uhKO!>DC?GYW7U@Ai8dD%oZwZ$ zhViX9kNLUrc+LLc;)IPtr*}TRV}lYQutr+Pi2&BVo)7`>gJ_AHoAD~`gec)V|PNe!RFoA^gCP0mS1>I z;$(b74PV{zk-9U%+vh$qKlP`*tp?fhfAlCZCr64@vp^9;s*#aVuJPr@rpeLIng#}m zPo6xX4qU!`IpD=^50Sll(_7}Cb^|7u*{!iEPJefDzTDa%mEC!+>#7gEZ~jR3XYxR= z4J0gApV4CEN}YZaFUBQ*7ppt%y}P2CvA0n=yEArSbK9BbhgMJGk9T);JSNVWcCx{J zzPd!+(SRTM&-y-iuw%=XE#>RitU2x5Y4kQtxo06qcznKpSdf-+v3X6jCpO2_TW@(? zlD_uf;Gne2`1!c;^s|)$J9fmjxLvt&W%;!6e2jRhU(}Md+jeZoeGU3klIFF?4;?zhnEKS+4J~Uac_5l@8T6yI^$;~!_{R*Z#D|Au12(-+ zG_~EU>D*qH*6?q3CUCbhwPL>;N%abgywwRM)cLtt`~LU43x}UA17|Ay?YH07ZQMwk zjFEX!T59q1%A%)sU5GhsPOtl9lua*Wp!&0R%ucaua_v5gIgOZ@nwbe8ctI@FTf#%` z-~UxIdp@)P$F~zwm#FFlW>Ne$<%j1WhXcd|_*h+m###_Vp-$Z!P0yZ909ff|TZNR= z>nt6pKg`q4Lw(z{rpR18H!y0XJ|t({=v?;t_)U%B)PFAV*`!?|$pa~mWJ!_ z{&o0N9n;vDgqvOW8_P+-oK30nL`;mE*4PK&gorOfY7em8W2z>M7>u^lCqfV8+H#_N zOFdp{s4GqHxd$_NtYnoOk#4Xad~eD(J_3z{KWr6vIAr6WlHR4|7F0GIib?K458~%T z<~z0AqFY*SMX76kk)$7mdiiA0e>D7IzF^<_3MblX5DWBuO zW4e55YU;?BFI8VUOT|w=|9Nt9lGat`U-s(NJCKwCwe5J!5gj*EQa&INs^C*oWX@-~ zObkvzB>w5Opq@JPzkl35JLqWIGz8U(({75|ft8&-Wv>GkOa&ZeyG;5mP|yclkG1gPkaJ$tCzd|5Z#YHDgMwFq;H)Z8H?GyeVz4$OxSc~~CG#^BNxRqrY4_bF6jgL;#WC0ecNC~#Nwx8s31z%QtI-e%?lWKHi5qF`F`Mb?=EhHy zlzBsP2yrcNJk5FE_108_4P<`C?c28renA}_;u0}<2k8#E6%iBW-t?DPnh>gsRXai~ zKw`p-qfY@uR70&wqg_tEizB558>@D1{EQ5=SOHfMceNzeH&f1;;|Go>?Dv+e zOHol###AnB7zOH>m@B;YWS{sGhIB!i8W6q0Ou5-Hb!;Jpc<`wG|01656Z!3|>7n94 zK2qR;km|_(On8BXGb7~^qTjjoN=m!OJVARt1(*=pST-rsNAIj>A(T?>-SD`TruI7M z`@z+_&qrjC7C0Zjp}q%eW^yzui7?cs;II&0&Z8BQ?2emTP%f2;d&Ear>(b@RGn_8t zHeM!hQsFxR8i>u(VC15VQsT`=dvTkSoZ4T4kc&}pACB;=)>gy1c+K<|9R^G9P#1E1 zaPH6A(dDVZG-}nliDO2T$6@91F=dEnjchlA{*pF_$}7JU_R`TT(aImQisVI1J~Y#D~dbx{n68 zzmHsxd&Zox*U`(dc`Vb5zt|`WDI(xcK7knW$vFLDDS0+fQ5DK2ZUVlnB^6+CX>ZC@ zS@oNsz2d<9ML+$79Wx}f1g4+;SdSV}7vr(;6Q7*ISrFCLT^YvIO*ea8Q==|gJd;+> zG-h%cT_l~Ue_gk6<3_Ucd~rCCyo+BV_*ii=6PV3+L_c>fwrH|@ zlR|asnbQ6|)h>8IVm2QR!s9OoQoxnb1`2k_f>l+$y1%t+Xov~PA4ebt9(dQRb@8kg zVg5)Qu!6@aDZ45j>@KlFR~t4$Z_3!aBdb{Hm9oBkD|nzL7e;$DSi-WJRTIPh+Uc#|rb3~pgZz%c@iQc!v|tuS zgO{BH+j0mdK_k2^-9PXu!Vwto+bVAhxhVZSdR&%OD`5sbj>Xd<=xA6PeF91lgKYpl zH3Hlx3LGbnRHQGZTR1mwHZTi=VZP|cA9sLSxJ`}S=i@nWk(`^Nva%)^S~-u!r&sr- zZ9ZI*IR9R?W9olujcA{~0gpi|0R~weWpPe!?rYLjiz4_xH#@DJT(%T<@kiY7?@*wg zKc5J-o&ou9%RI+mFi1BDCw*lj}hq*?8$P=)He?dKT=yH^Wwn>|FpKyYgxckh-Af;_3 z0}#{o0XjR|-6leKUHW(P^YO*PH@@MvcI{fUht4z}K780p!4o@BkBlmu><&gpAauQu zPPlnpylxX5No#g*>zS8#t8fI%vtN2{65O%lI2zfEaU5*Ch(Qh-vf;MgJa9>$Jv$5n z5@;?5QXb?sKGe<>G0f`;IvZLAhuK`Wt=5v{HOec(Rgkq}V|E6=pa&DFK+ zN8jKjKmV+H@Zb~WX_)Lg_V3q+0fD9X^AWFN2Xaj4P3LMRJn|4rWc-9QNm2=A$Cg_BKu&^@LuBoJS zx2t;)seYn(s*YKkX`v0KF1UBEI&_n?TN5`2Wbq4EYoij6%eR?eB>sbRn1RnHl7>dl9}p> z>}}1@CN^n!_%E={sz>H-a|)79@$Br7M?;8X8?6!i*)rP+f!J`GElmMCB_eGOymgzb3r+?87Q)j9)c)WsFg0muualPy|3=C$^O9>SCX~> z=-2P1UOY9BF6>XfDkICq(VOhjyvVw=&#t=%*y=pl6_^P;xqj_htaW?Q)WWCC(PmPJd|ys=ho3N9clb=lp<>uy+se}9X?-NI{f1w{0pyf5H|rM_6>-bD=76LwpUAcCx_!)R^G**B z59B|k&}E_?4VUtP>9F}3dDJN|2&#ia7LOTr+u(lrH3sfMLWB%<)F&H4b51D|I^7{l zid%i6ZY1gbBEhBIrZRXvX1>@?uiPSQKzvqt7RvbbAQ(!GRYzOi{NI%zVK-2^1h{fE z7~Z|rj63dAtnHIiQ(8GiEiDFM^YAL<+uGWS&!-_%0?23v#X$EzuRIe9D60@qXvGR! zl5r$(0;;;YuqC<%4SmewWQdCLiVFS{NV=Ts2R0iXJZfTQ77yo-(RARz0n9AKU{q(* zU?+>E+r3onpE@PlkDH`%k%3Nt?$ z&0p7UQ&QE@c|cTE!Z<}q$BM)sKeaVqR@#iI#TFMb)9 z$PQxL%!1sIfu#QaeyVoh+fW&c#dbI;=!>479@_~T>IjreG&;EK z!B%}Ade6IGO-)Q-@f`CRd%Zo3bQJ^Kh_F3Xa)UH1@-T^Gt>aC4xdjCR2UKu0c?KUt z8Gox71x}+H8X8gX+lgrzVEimZ+FsExk6r~aU5AMv9PK$cf>>@KTFYptu^~$Yw{3el zLdgkR95MR2QvYRocY_VUr`PsY3ZDY;6bUg$?R-^Hp-dtikSILF#mUJ6Vv@lV#(=2D z3;q$6Chwg`jMA^c}crAhNX6cZW%q)UCOvYcQ3eGdD+qJ9z_OsZr(V}_+0wEKeKe@%7EZz z&mpCcWj-sw14*ybOQggcADr9*gxCK zc`M*t?ELlDL$Fo7L|)MT*T>~+e!jU0+=pYijVWI43CF3we`QJRJ^OYuCU{ig(`sXC zB+I&eu*c_7nYOVTBUHwP%x0pjq3k)(6;AMD6apPrGQN_d zu@&OhZ3g=t2Q$ibt}&WlrJ0tm1Mj(Z?MFsT48bvs|EX(f1w>NpxZxm~H>NQ#FxlBd zeN+tsBWC;QxEoX`L0#x`LW;URf8L)b7Nds#4_SvIg;E1Yflc&AYAJ6GI<=b(AJ#Oc zp1JvLatN9b+sA6bj3Z39yQa-)rgtJKwgOPuzL*eTf)cVuE9DwM(aB65X`G34ezC}D zK8{@j?@2;cpyZ7|2tXT4W`1UrTh6`UYJwdZ27)_B1^jHr77%_0`5yxiB^(s-K_hlp zQwEI`oJh(AZk#4@P)LsTR!FvM{QmnjO!90t3{WTAr^Pf%f=RSLZ(R%_+-~p}n*a#H z8@&Z7*|)%lArW>;NYqz%cXyKs8b)-qbjqHbG^iDjNscly&{NHz_=kltaZd7qof@cZ zalA6lepB;&GYzobpl%X@n-(9QT!t34!Krsao~dhS__ zn{h(BS8&&^6b%;uI|K%g2B(3pg2F8$*Dpsit=o+{Iy&&4as9A=fsdfZfuU~Wx@a^j z!j`Z@@SI^)Ge|24%^~c7BAPISZo$=xfwS8Sx{CiJ(Y5dCsebgbDpFqDanL}VR{guN z>zC`_raoX@6PLPw5AUk#MXEb7=T(cgMrq-?t{l+h43`Njh@^9{8%X1qxLzlH=p&yL zJW+J|8kpLMV;(~~m_<%K+~5XBLZk#*sRejs|>)qi>(YH=MWCnLMfnc_p(C86HH z>KZ5=OIcp+0IRiN^Zw{hqmt;y&th^Eh0In}(*{xPS&eB)V%NdYZLjK*;(_7cYF8;k z6b6X#x2Z7b;VRR8*HJ$(UCO$=nD^ezn>SH6VJU5^c(hL)S`FvsK)-dO6p9<2D<%}h zM@0ThkZ#>>(Jc_34%2x)DfHms|1fR3bb=cG43vT(JVw}vsDTc@kI-I%*->;cZ0H+L zJO=+K)z4w5&9V`br9|Klv=!>Zf%X!qVtwlBVqyH_9UjNRV~;`elnd#PU=T0?GYbwI zy_p?WTmN@+srGc*iLIid%-Z%g(ga5ImRDA)JbwImW#XHCcOi{lzkW@oRWvc*T|R4t zkvH^`ZyU|*M-8)q>=t!;`DHmnG;4+p%Vq+eBV9!Jj>CBEyOnh$3o|lBv z&PH1WLvZil2>9Q-_lu*WBUr|hD#kv~KqF@|yH=xbUC2Q4o8u)O%6SyQF0l?ss2uom4g5&su`_|Cl|0hKC7+v{a~`XbXQRcU(^hO$Qo6+>5g{Ir zhmw)VqWL+OKm8+czyMySPpjbzzfEhu_v?|`1Z`2}5NS>HDlpws4}?tscn627JXsBG zm|@d#m{?nw-mPtQY)^vo7EiiUIW`@_aUFjfVuT5&pDB83$)y@nv&fJ?B9etEm2Zgx zM@$gJ06hcEY^zp!_nVC&`|OS(2l6{EkVYLUmIbhGf4w<} z!=*v1aK@AIO=LD18p4bc8j#WLGu@J~MRwMS;@)VhX~5S7SdBejtI~sxTK(OPdowU7 z&$G|=ci-(QBAF_%OiV*50YX(+xVU|rnlb4mDDDo;ft3m3=R{Bm^a|w~;ulCIfwArDnG>>%RQuqN5QoE6am|`_Twq?3%juTM?i&Kjy20l%I zT(D9!mC4MWow3N+#KK%4rb@#XEnB|>#1Zuc7Q3jObya1l5Hl&_%);bfL`7BL^rRNZ zqW^?yBaA^(5(C^)HsL?5;En=p3!-TR=p;@XnF<0oc~37u3E<@9jKg?0K_Zk?GCA<( zjgo>7G!EP$!2|1&1?qc)lt>So@HLEUk>Z3k`s4e!+?8T6i2?XXBoYm6?SNt)>&CPf zW~KAv&DQplBc{aF^ce%_$71$&DFkKXhD(M0ExGE%WfNj{c6Orey?9l9#L+t>KZ$e6 zz1Qq6nIpr`N5sRSC15bHrwznztnqA^f)AQ2iUav59|-|MfNL8)Y#VtkGGR}~E%8^v z2cJEAM(--)bOTE!OpLJXtM-hud~;m1$R-={n_?7LuRR|E8CKU*fc|thC;E5axM^F5oeE8&*{{hZEu`d7s diff --git a/examples/parametersweep/regenerateAndTest.sh b/examples/parametersweep/regenerateAndTest.sh index 1c903c65..9955ec13 100755 --- a/examples/parametersweep/regenerateAndTest.sh +++ b/examples/parametersweep/regenerateAndTest.sh @@ -6,12 +6,12 @@ ruff check *.py python GenerateExamples.py -all python GenerateExamples.py -jnml -python GenerateExamples.py -x -python GenerateExamples.py -x -jnml -python GenerateExamples.py -x -jnmlnrn +python GenerateExamples.py -w2d +python GenerateExamples.py -w2d -jnml +python GenerateExamples.py -w2d -jnmlnrn python CanonicalCircuit.py python CanonicalCircuit.py -jnml -python CanonicalCircuit.py -x -jnml -python CanonicalCircuit.py -x -jnmlnrn +python CanonicalCircuit.py -w2d -jnml +python CanonicalCircuit.py -w2d -jnmlnrn diff --git a/test.sh b/test.sh index edeb6ad5..46f754bb 100755 --- a/test.sh +++ b/test.sh @@ -1,6 +1,6 @@ set -ex -ruff format *.py */*.py */*/*.py */*/*/*.py +ruff format *.py */*.py */*/*.py pip install .