-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircuit_config.json
More file actions
46 lines (46 loc) · 1.54 KB
/
circuit_config.json
File metadata and controls
46 lines (46 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"manifest": {
"$BASE_DIR": "${configdir}",
"$NETWORK_DIR": "$BASE_DIR\\network",
"$COMPONENTS_DIR": "$BASE_DIR\\biophys_components"
},
"components": {
"biophysical_neuron_models_dir": "$COMPONENTS_DIR\\biophysical_neuron_models",
"mechanisms_dir": "$COMPONENTS_DIR\\mechanisms",
"morphologies_dir": "$COMPONENTS_DIR\\morphologies",
"point_neuron_models_dir": "$COMPONENTS_DIR\\point_neuron_models",
"synaptic_models_dir": "$COMPONENTS_DIR\\synaptic_models",
"templates_dir": "$COMPONENTS_DIR\\templates",
"__pycache___dir": "$COMPONENTS_DIR\\__pycache__"
},
"networks": {
"nodes": [
{
"nodes_file": "$NETWORK_DIR\\biophysical_nodes.h5",
"node_types_file": "$NETWORK_DIR\\biophysical_node_types.csv"
},
{
"nodes_file": "$NETWORK_DIR\\shock_nodes.h5",
"node_types_file": "$NETWORK_DIR\\shock_node_types.csv"
},
{
"nodes_file": "$NETWORK_DIR\\tone_nodes.h5",
"node_types_file": "$NETWORK_DIR\\tone_node_types.csv"
}
],
"edges": [
{
"edges_file": "$NETWORK_DIR\\biophysical_biophysical_edges.h5",
"edge_types_file": "$NETWORK_DIR\\biophysical_biophysical_edge_types.csv"
},
{
"edges_file": "$NETWORK_DIR\\shock_biophysical_edges.h5",
"edge_types_file": "$NETWORK_DIR\\shock_biophysical_edge_types.csv"
},
{
"edges_file": "$NETWORK_DIR\\tone_biophysical_edges.h5",
"edge_types_file": "$NETWORK_DIR\\tone_biophysical_edge_types.csv"
}
]
}
}