Skip to content

Commit 7414011

Browse files
committed
Update user guide and changelog
Signed-off-by: Victor Chang <[email protected]>
1 parent 030328f commit 7414011

File tree

3 files changed

+135
-36
lines changed

3 files changed

+135
-36
lines changed

docs/changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
[GitHub Milestone 0.4.0](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/5)
2323

2424
- gh-435 Fix CLI to read log dir path from NLog config file.
25-
- New Virtual Application Entity support for DICOMWeb STOW-RS APIs to enable dynamic endpoints.
25+
- gh-425 New Virtual Application Entity support for DICOMWeb STOW-RS APIs to enable dynamic endpoints.
26+
- gh-421 Integrate updated Workflow Request data structure to support multiple sources.
2627
- New data [plug-ins](./plug-ins/overview.md) feature to manipulate incoming outgoing data.
2728

2829

docs/index.md

Lines changed: 20 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -27,51 +27,36 @@ MIG uses standard protocols like DICOM and FHIR. It stores studies and resources
2727
After inference completes, MIG receives notifications for exporting the results to the proper consumers, usually PACS or viewers for visualization, VNAs for storage, and EHRs (Electronic Healthcare Records).
2828

2929

30-
## Services
30+
A list of supported protocols and services are available on the [MONAI Deploy Informatics Gateway Services](./setup/services.md) page.
3131

32-
MIG contains the following standard protocols for communicating with medical devices:
3332

34-
* **DICOM SCP**: C-ECHO, C-STORE
35-
* **DICOM SCU**: C-STORE
36-
* **HL7 Server**: A HL7 MLLP listener.
37-
* **ACR DSI API**: [The American College of Radiology’s Data Science Institute API](https://www.acrdsi.org/-/media/DSI/Files/ACR-DSI-Model-API.pdf)
38-
* **DICOMweb client**: QIDO-RS, WADO-RS, STOW-RS
39-
* **FHIR client**: GET
33+
## Contributing
34+
For guidance on making a contribution, see the [contributing guidelines](https://github.com/Project-MONAI/monai-deploy/blob/main/CONTRIBUTING.md).
4035

41-
> [!Note]
42-
> The ACR DSI API uses the DICOMweb client and FHIR client.
36+
## Community
37+
To participate, please join the MONAI Deploy App SDK weekly meetings on the [calendar](https://calendar.google.com/calendar/u/0/[email protected]&ctz=America/New_York) and review the [meeting notes](https://docs.google.com/document/d/1nw7JX-1kVaHiK8wBteM96xAWE3dh5wRUeC691bGuFjk/edit?usp=sharing).
4338

44-
### DICOM SCP
39+
Join the conversation on Twitter [@ProjectMONAI](https://twitter.com/ProjectMONAI) or join our [Slack channel](https://forms.gle/QTxJq3hFictp31UM9).
4540

46-
The *DICOM SCP Service* accepts standard DICOM C-ECHO and C-STORE commands, which receive DICOM instances for processing. In addition, the Informatics Gateway groups received DICOM instances by the study or series based on the configuration. Once DICOM instances are grouped, they are assembled into a payload for the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) to consume.
41+
Ask and answer questions over on [MONAI Deploy Informatics Gateway's GitHub Discussions tab](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/discussions).
4742

48-
### DICOM SCU
43+
## License
4944

50-
The *DICOM SCU Service* enables users to export application-generated DICOM results to external DICOM devices. It subscribes to the `md.export.request.monaiscu` events generated by the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) and then exports the data to user-configured DICOM destination(s).
45+
Copyright (c) MONAI Consortium. All rights reserved.
46+
Licensed under the [Apache-2.0](LICENSE) license.
5147

52-
> [!Note]
53-
> DICOM instances are sent as-is; no codec conversion is done as part of the SCU process.
54-
> See the [DICOM Interface SCU](./compliance/dicom.md#dimse-services-scu) section for more information.
48+
This software uses the Microsoft .NET 6.0 library, and the use of this software is subject to the [Microsoft software license terms](https://dotnet.microsoft.com/en-us/dotnet_library_license.htm).
5549

56-
### DICOMWeb STOW-RS
50+
By downloading this software, you agree to the license terms & all licenses listed on the [third-party licenses](docs/compliance/third-party-licenses.md) page.
5751

58-
The *DICOMWeb STOW-RS Service* allows users to trigger a new workflow request by uploading a DICOM dataset. The entire DICOM dataset is assembled into a payload for the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) to consume.
59-
It provides options to trigger a workflow with or without specifying a workflow ID/name. See the
60-
[DICOMWeb STOW-RS](./api/rest/dicomweb-stow.md) section for more information.
52+
## Links
6153

62-
### HL7 MLLP Server
54+
- Website: <https://monai.io>
55+
- API documentation: <https://docs.monai.io/projects/monai-deploy-informatics-gateway>
56+
- Code: <https://github.com/Project-MONAI/monai-deploy-informatics-gateway>
57+
- Project tracker: <https://github.com/Project-MONAI/monai-deploy-informatics-gateway/projects>
58+
- Issue tracker: <https://github.com/Project-MONAI/monai-deploy-informatics-gateway/issues>
59+
- Uncyclo: <https://github.com/Project-MONAI/monai-deploy-informatics-gateway/wiki>
60+
- Test status: <https://github.com/Project-MONAI/monai-deploy-informatics-gateway/actions>
6361

64-
The *HL7 MLLP Server* accepts Health Level 7 messages via the MLLP (Minimal Lower Layer Protocol). The received messages are validated and assembled into a payload for the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) to consume.
6562

66-
### ACR DSI API
67-
68-
The ACR DSI API allows users to trigger inference requests via RESTful calls, utilizing DICOMweb and FHIR to
69-
retrieve data specified in the request. Upon data retrieval, the Informatics Gateway uploads the data to the
70-
shared storage and generates an `md.workflow.request` event, which notifies the
71-
[MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) for processing.
72-
73-
### DICOMweb Export
74-
75-
A DICOMweb export agent can export any user-generated DICOM content to configured DICOM destinations. The agent
76-
subscribes to the `md.export.request.monaidicomweb` events generated by the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager)
77-
and then exports the data to user-configured DICOMweb destination(s).

docs/setup/services.md

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
<!--
2+
~ Copyright 2021-2023 MONAI Consortium
3+
~
4+
~ Licensed under the Apache License, Version 2.0 (the "License");
5+
~ you may not use this file except in compliance with the License.
6+
~ You may obtain a copy of the License at
7+
~
8+
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~
10+
~ Unless required by applicable law or agreed to in writing, software
11+
~ distributed under the License is distributed on an "AS IS" BASIS,
12+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
~ See the License for the specific language governing permissions and
14+
~ limitations under the License.
15+
-->
16+
17+
18+
# MONAI Deploy Informatics Gateway Services
19+
20+
MONAI Deploy Informatics Gateway supports the following standard protocols for communicating with medical devices:
21+
22+
* **DICOM SCP**: C-ECHO, C-STORE
23+
* **DICOM SCU**: C-STORE
24+
* **HL7 Server**: A HL7 MLLP listener.
25+
* **ACR DSI API**: [The American College of Radiology’s Data Science Institute API](https://www.acrdsi.org/-/media/DSI/Files/ACR-DSI-Model-API.pdf)
26+
* **DICOMweb client**: QIDO-RS, WADO-RS, STOW-RS
27+
* **FHIR Server**: GET
28+
* **FHIR client**: GET
29+
30+
> [!Note]
31+
> The ACR DSI API uses the DICOMweb client and FHIR client.
32+
33+
## DICOM SCP
34+
35+
The *DICOM SCP Service* accepts standard DICOM C-ECHO and C-STORE commands, which receive DICOM instances for processing. In addition, the Informatics Gateway groups received DICOM instances by the study or series based on the configuration. Once DICOM instances are grouped, they are assembled into a payload for the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) to consume.
36+
37+
### Workflow Request
38+
39+
With a DICOM SCP triggered workflow request, the data trigger contains the following:
40+
41+
- `DataService`: `DataService.DIMSE`
42+
- `Source`: `<calling AE Title>`
43+
- `Destination`: `<called AE Title>`
44+
45+
## DICOM SCU
46+
47+
The *DICOM SCU Service* enables users to export application-generated DICOM results to external DICOM devices. It subscribes to the `md.export.request.monaiscu` events generated by the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) and then exports the data to user-configured DICOM destination(s).
48+
49+
> [!Note]
50+
> DICOM instances are sent as-is; no codec conversion is done as part of the SCU process.
51+
> See the [DICOM Interface SCU](./compliance/dicom.md#dimse-services-scu) section for more information.
52+
53+
## DICOMWeb STOW-RS
54+
55+
The *DICOMWeb STOW-RS Service* allows users to trigger a new workflow request by uploading a DICOM dataset. The entire DICOM dataset is assembled into a payload for the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) to consume.
56+
It provides options to trigger a workflow with or without specifying a workflow ID/name. See the
57+
[DICOMWeb STOW-RS](../api/rest/dicomweb-stow.md) section for more information.
58+
59+
### Workflow Request
60+
61+
With a DICOMWeb STOW-RS triggered workflow request, the data trigger contains the following:
62+
63+
- `DataService`: `DataService.DicomWeb`
64+
- `Source`: `<caller's IP address>`
65+
- `Destination`: `default` or `<name of Virtual AE Title>`
66+
67+
## HL7 MLLP Server
68+
69+
The *HL7 MLLP Server* accepts Health Level 7 messages via the MLLP (Minimal Lower Layer Protocol). The received messages are validated and assembled into a payload for the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) to consume.
70+
71+
### Workflow Request
72+
73+
With an HL7 MLLP Server triggered workflow request, the data trigger contains the following:
74+
75+
- `DataService`: `DataService.HL7`
76+
- `Source`: `<caller's IP address>`
77+
- `Destination`: `<MIG's IP address>`
78+
79+
## ACR DSI API
80+
81+
The ACR DSI API allows users to trigger inference requests via RESTful calls, utilizing DICOMweb and FHIR to
82+
retrieve data specified in the request. Upon data retrieval, the Informatics Gateway uploads the data to the
83+
shared storage and generates an `md.workflow.request` event, which notifies the
84+
[MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager) for processing.
85+
See the [Inference API](../api/rest/inference.md) for more information.
86+
87+
### Workflow Request
88+
89+
With an ACR DSI API triggered workflow request, the data trigger contains the following:
90+
91+
- `DataService`: `DataService.ACR`
92+
- `Source`: `<transaction ID from the ACR request>`
93+
- `Destination`: `<MIG's IP address>`
94+
95+
## DICOMweb Export
96+
97+
A DICOMweb export agent can export any user-generated DICOM content to configured DICOM destinations. The agent
98+
subscribes to the `md.export.request.monaidicomweb` events generated by the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager)
99+
and then exports the data to user-configured DICOMweb destination(s).
100+
101+
## FHIR Server
102+
103+
The *FHIR Server* accepts FHIR resources as described in the [FHIR API](../api/rest/fhir.md) section. When data arrives at the service, each resource is packaged into a payload and a workflow request is
104+
sent to the [MONAI Deploy Workflow Manager](https://github.com/Project-MONAI/monai-deploy-workflow-manager).
105+
106+
107+
### Workflow Request
108+
109+
With an FHIR Server triggered workflow request, the data trigger contains the following:
110+
111+
- `DataService`: `DataService.FHIR`
112+
- `Source`: `<caller's IP address>`
113+
- `Destination`: `<MIG's IP address>`

0 commit comments

Comments
 (0)