forked from NeurodataWithoutBorders/matnwb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctionSignatures.json
More file actions
49 lines (49 loc) · 899 Bytes
/
functionSignatures.json
File metadata and controls
49 lines (49 loc) · 899 Bytes
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
47
48
49
{
"generateCore":
{
"inputs":
[
{
"name":"core namespace",
"kind":"optional",
"type":"filepath=*.yaml,*.yml"
},
{
"name":"extensions namespace(s)",
"kind":"optional",
"type":"filepath=*.yaml,*.yml",
"multiplicity":"append"
}
]
},
"generateExtension":
{
"inputs":
[
{
"name":"namespace",
"kind":"required",
"type":"filepath=*.yaml,*.yml"
}
]
},
"nwbRead":
{
"inputs":
[
{"name":"NWB File", "kind":"required", "type":"filepath=*.nwb,*.h5"}
],
"outputs":
[
{"name":"NwbFile Object", "type":"nwbfile"}
]
},
"nwbExport":
{
"inputs":
[
{"name":"NwbFile Object", "kind":"required", "type":"NwbFile"},
{"name":"path to output file", "kind":"required", "type":"filepath=*.nwb"}
]
}
}