-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (53 loc) · 1.35 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
{
"name": "cni-tsnr-map",
"label": "CNI: temporal SNR analysis",
"description": "Calculate signal fluctuation to noise ratio (SFNR), temporal SNR, and radius of decorrelation (from Weisskoff analysis) of a time series in a 4D NIFTI.",
"version": "2.1.0",
"inputs": {
"nifti": {
"base": "file",
"description": "Input 4D NIFTI file",
"type": {
"enum": [
"nifti"
]
}
}
},
"config": {
"discarded_volume": {
"default": 3,
"description": "The number of volume to discard from the beginning of the time series",
"type": "number"
},
"mask_threshold": {
"default": 0.5,
"description": "Fractional intensity threshold (0-\u003e1); smaller values give larger brain outline estimates",
"type": "number"
},
"roi_size": {
"default": 21,
"description": "Upper limit of ROI length for Weisskoff analysis",
"type": "number"
},
"save_all_outputs": {
"default": true,
"description": "Save all intermediate results, including raw tSNR, detrended time series, mask, etc",
"type": "boolean"
}
},
"author": "Hua Wu",
"maintainer": "Hua Wu",
"license": "Other",
"source": "https://github.com/huawu02/tsnr",
"url": "",
"custom": {
"gear-builder": {
"category": "analysis",
"image": "cni-tsnr-map"
},
"flywheel": {
"suite": "Stanford CNI"
}
}
}