-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.6 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
{
"name": "parrec-mr-classifier",
"label": "SciTran PAR/REC MR Classifier",
"description": "Extract metadata from PAR/REC MR data generated by Philips MR scanners.",
"maintainer": "Michael Perry <[email protected]>",
"author": "Michael Perry <[email protected]>",
"url": "https://scitran.github.io",
"source": "https://github.com/scitran-apps/parrec-mr-classifier",
"license": "Apache-2.0",
"flywheel": "0",
"version": "2.0.0",
"custom": {
"docker-image": "scitran/parrec-mr-classifier:2.0.0",
"flywheel": {
"suite": "SciTran"
}
},
"config": {
"timezone": {
"description": "Time Zone to which all timestamps should be localized. This will set the default time zone in the Gear and thus localize the timestamps to that time zone. Examples: 'UTC', 'America/Los_Angeles', 'America/New_York'. [default = 'UTC'].",
"type": "string",
"default": "UTC"
}
},
"inputs": {
"parrec": {
"base": "file",
"type": {
"enum": [
"parrec"
]
},
"description": "PAR file, -OR- archive (.zip) containing both PAR/REC files. If this is an archive containing both files, the REC file need not be specified below."
},
"rec": {
"base": "file",
"optional": true,
"type": {
"enum": [
"parrec"
]
},
"description": "REC file. -OPTIONAL- This file should be provided -IF- an archive, consisting of both a PAR and REC file was not chosen as the parrec input above. -NOTE- If a REC file is not provided here the Gear will attempt to parse only the PAR file."
}
}
}