This repository has been archived by the owner on Apr 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
57 lines (57 loc) · 2.21 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
{
"name": "dicom-send",
"label": "DCMTK: DICOM Send",
"description": "DICOM Send utilizes DCMTK's storescu to send DICOM data from a Flywheel instance to a destination DICOM server, hosted externally. This Gear supports the transmission of individual DICOM files and archives, as well as the transmission of an entire session when a specific input is not provided. Note that a private tag is added to each DICOM file to be transmitted (Flywheel:DICOM Send, at group 0x0021). Importantly, the external DICOM server must be reachable from the engine host of the Flywheel instance.",
"version": "2.1.1",
"inputs": {
"file": {
"base": "file",
"description": "Any DICOM file or an archive (zip or tar) containing DICOM file(s). Non DICOM files are ignored. If no input is provided, all DICOM files in the session where the Gear is executed are downloaded and used as input.",
"type": {
"enum": [
"dicom"
]
},
"optional": true
},
"api_key": {
"base": "api-key",
"read-only": true
}
},
"config": {
"destination": {
"description": "The IP address or hostname of the destination DICOM server. Note: The server must be reachable from the engine host of the Flywheel instance.",
"type": "string"
},
"called_ae": {
"description": "The Called AE title of the receiving DICOM server.",
"type": "string"
},
"calling_ae": {
"description": "The Calling AE title. Default = flywheel",
"type": "string",
"default": "flywheel"
},
"port": {
"description": "Port number of the listening DICOM service. Default = 104",
"type": "number",
"default": 104
}
},
"author": "Flywheel",
"maintainer": "Flywheel <[email protected]>",
"license": "Other",
"source": "https://github.com/flywheel-apps/dicom-send",
"url": "http://support.dcmtk.org/docs/storescu.html",
"custom": {
"gear-builder": {
"category": "converter",
"image": "flywheel/dicom-send:2.1.1"
},
"flywheel": {
"suite": "DCMTK"
}
},
"command": "python3 run.py"
}