-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.31 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
46
47
48
49
50
51
{
"name": "dwi-split-shells",
"label": "SCITRAN: DWI Split Shells",
"description": "Extract individual diffusion shells from multi-shell DWI data. Output includes a NIfTI, BVEC, and BVAL file for each diffusion shell found in the data. By default this gear will normalize the bvalues (e.g., b=998 will become b=1000).",
"author": "GLU <[email protected]>",
"maintainer": "GLU <[email protected]>",
"url": "https://github.com/scitran-apps/dwi-split-shells",
"source": "https://github.com/scitran-apps/dwi-split-shells",
"license": "MIT",
"flywheel": "0",
"version": "2.0.0",
"custom": {
"docker-image": "scitran/dwi-split-shells:2.0.0"
},
"config": {
"doNorm": {
"default": true,
"type": "boolean",
"description": "Normalize the bValues. (true/false, default=true)"
}
},
"inputs": {
"bval": {
"base": "file",
"description": "Multi-Shell BVAL text file.",
"type": {
"enum": [
"bval"
]
}
},
"bvec": {
"base": "file",
"description": "Multi-Shell BVAL text file.",
"type": {
"enum": [
"bvec"
]
}
},
"dwi": {
"base": "file",
"description": "Multi-Shell DWI NIfTI file.",
"type": {
"enum": [
"nifti"
]
}
}
}
}