-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·68 lines (68 loc) · 1.75 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "captk-preproc-zscore-norm",
"label": "CaPTk - Preprocessing Z-score Normalization",
"description": "This package provides z-score for image pre-processing.",
"author": "CBICA",
"maintainer": "D3b-TIRU <[email protected]>",
"source": "https://github.com/d3b-center/fw-captk-preproc-zscore-norm",
"url": "https://cbica.github.io/CaPTk/preprocessing_zScoreNorm.html",
"version": "0.0.0-1",
"license": "Apache-2.0",
"custom": {
"gear-builder": {
"category": "analysis",
"image": "chop.flywheel.io/captk-preproc-zscore-norm:0.0.0-1"
},
"flywheel": {
"suite": "CaPTk"
}
},
"inputs": {
"input_image": {
"base": "file",
"description": "Input image to process.",
"optional": false,
"type": {
"enum": [
"nifti"
]
}
},
"mask": {
"base": "file",
"description": "Input mask to process.",
"optional": true,
"type": {
"enum": [
"nifti"
]
}
}
},
"config": {
"zNormQuant": {
"description": "The Lower-Upper Quantile range to remove.",
"type": "string",
"default":"5,95"
},
"zNormCut": {
"description": "The Lower-Upper Cut-off (multiple of stdDev) to remove.",
"type": "string",
"default":"3,3"
}
},
"environment":{
"CAPTK_VERSION":"1.8.1",
"HOME":"/root",
"HOSTNAME":"0b633f948575",
"LD_LIBRARY_PATH":"/opt/captk/1.8.1/usr/",
"MESA_GL_VERSION_OVERRIDE":"3.2",
"OLDPWD":"/opt/captk/1.8.1/usr",
"PATH":"/opt/captk/1.8.1/usr:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"PWD":"/opt/captk/1.8.1/usr",
"QT_GRAPHICSSYSTEM":"native",
"QT_X11_NO_MITSHM":"1",
"SHLVL":"1",
"TERM":"xterm"
}
}