-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompspec.json
55 lines (55 loc) · 1.48 KB
/
compspec.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"meta": {
"name": "decentralized mancova",
"id": "dmancova",
"version": "v1.0.0",
"repository": "",
"description": "a demo for decentralized mancova"
},
"computation": {
"type": "docker",
"dockerImage": "dmancova",
"command": [
"python",
"\/computation\/local.py"
],
"remote": {
"type": "docker",
"dockerImage": "dmancova",
"command": [
"python",
"\/computation\/remote.py"
]
},
"input": {
"datafile": {
"label": "Input Data",
"type": "string",
"extensions": [
[
"csv"
]
]
},
"mask": {
"defaultValue": "/computation/local_data/mask.nii",
"label": "Mask",
"type": "string",
"source": "owner"
},
"num_ics": {
"defaultValue": 20,
"label": "Global Number of Independent Components",
"min": 1,
"type": "number",
"source": "owner"
},
"scica_template": {
"defaultValue": "NeuroMark.nii",
"label": "Spatially Constrained ICA Template",
"type": "list/file"
}
},
"output": {}
}
}