-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
43 lines (43 loc) · 1.36 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
{
"name": "dcm-convert",
"label": "SciTran: DCM-CONVERT - DICOM conversion tool",
"description": "DCM-CONVERT uses SciTran's data library (https://github.com/scitran/data) to convert raw DICOM data (zip archive) to NIfTI, Montage, and PNG (screenshot acquisitions) formats. DCM-CONVERT supports Siemens and GE DICOM data.",
"maintainer": "Michael Perry <[email protected]>",
"author": "Scientific Transparency (RF Dougherty, K Hahn, R Bowen, G Schaefer, LM Perry)",
"url": "https://github.com/scitran/data",
"source": "https://github.com/scitran-apps/dcm-convert",
"license": "Apache-2.0",
"flywheel": "0",
"version": "1.1.3",
"config": {
"convert_montage": {
"description": "Convert DICOM archive to MONTAGE format. (Default=true)",
"default": true,
"type": "boolean"
},
"convert_nifti": {
"description": "Convert DICOM archive to NIfTI format. (Default=true)",
"default": true,
"type": "boolean"
},
"convert_png": {
"description": "Convert screenshot acquisitions to PNG. (Default=false)",
"default": false,
"type": "boolean"
}
},
"inputs": {
"dicom": {
"description": "DICOM archive (.zip file)",
"base": "file",
"type": {
"enum": [
"dicom"
]
}
}
},
"custom": {
"docker-image": "scitran/dcm-convert:v1.1.3"
}
}