-
Notifications
You must be signed in to change notification settings - Fork 8
/
functionSignatures.json
41 lines (36 loc) · 1.06 KB
/
functionSignatures.json
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
{
"xolotl.show":
{
"inputs":
[
{"name":"x","kind":"required","type":"xolotl"},
{"name":"obj", "kind":"required", "type":"choices=cpplab.search('conductances')"},
{"name": "custom_name", "kind": "ordered", "type": "choices={'custom name'}"}
]
},
"xolotl.connect":
{
"inputs":
[
{"name":"x","kind":"required","type":"xolotl"},
{"name":"comp1", "kind":"required", "type":"choices=x.Children"},
{"name":"comp2", "kind":"required", "type":"choices=x.Children"},
{"name":"syn","type":"choices=cpplab.search('synapses')"}
]
},
"xolotl.reset":
{
"inputs":
[
{"name":"x","kind":"required","type":"xolotl"},
{"name":"snap_name", "kind":"required", "type":"choices={x.snapshots.name}"}
]
},
"xolotl.getGatingFunctions":
{
"inputs":
[
{"name":"conductance", "kind":"required", "type":"choices=cpplab.search('conductances')"}
]
}
}