forked from scitran-apps/dicom-mr-classifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1.54 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
{
"name": "dicom-mr-classifier",
"label": "SciTran: DICOM MR Classifier",
"description": "Extract metadata and determine classification from raw DICOM data. Compatible with Siemens, Philips, and GE DICOMs.",
"maintainer": "Michael Perry <[email protected]>",
"author": "Michael Perry <[email protected]>",
"url": "https://github.com/scitran-apps/dicom-mr-classifier",
"source": "https://github.com/scitran-apps/dicom-mr-classifier/releases",
"license": "Apache-2.0",
"flywheel": "0",
"version": "1.3.2",
"custom": {
"gear-builder": {
"image": "scitran/dicom-mr-classifier:1.3.2",
"category": "converter"
},
"flywheel": {
"suite": "SciTran",
"uid": 1000,
"gid": 1000
}
},
"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: 'America/Los_Angeles', 'America/New_York'. [default = 'UTC'].",
"type": "string",
"default": "UTC"
},
"force": {
"description": "Force pydicom to read the input file. This option allows files that do not adhere to the DICOM standard to be read and parsed. (Default=False)",
"type": "boolean",
"default": false
}
},
"inputs": {
"dicom": {
"base": "file",
"type": {
"enum": [
"dicom"
]
},
"description": "Archive (.zip) containing DICOM files."
},
"classifications": {
"base": "context"
}
}
}