-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
45 lines (45 loc) · 1.1 KB
/
manifest.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
{
"name": "dwi-flip-bvec",
"label": "VISTA Lab: DWI Flip BVEC",
"description": "Flips the sign of the the specified B-vector(s).",
"author": "GLU <[email protected]>",
"maintainer": "GLU <[email protected]>",
"url": "https://github.com/vistalab/dwi-flip-bvec",
"source": "https://github.com/vistalab/dwi-flip-bvec",
"license": "MIT",
"flywheel": {
"suite": "VISTA Lab"
},
"version": "1.0.0",
"custom": {
"docker-image": "vistalab/dwi-flip-bvec:1.0.0"
},
"config": {
"xFlip": {
"default": false,
"type": "boolean",
"description": "Flip the x axis of the bvec (true/false, default=false)"
},
"yFlip": {
"default": false,
"type": "boolean",
"description": "Flip the y axis of the bvec (true/false, default=false)"
},
"zFlip": {
"default": false,
"type": "boolean",
"description": "Flip the z axis of the bvec (true/false, default=false)"
}
},
"inputs": {
"bvec": {
"base": "file",
"description": "BVEC text file.",
"type": {
"enum": [
"bvec"
]
}
}
}
}