Skip to content
This repository was archived by the owner on Apr 11, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"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.0",
"version": "2.1.1_rc0",
"inputs": {
"file": {
"base": "file",
Expand Down Expand Up @@ -47,7 +47,7 @@
"custom": {
"gear-builder": {
"category": "converter",
"image": "flywheel/dicom-send:2.1.0"
"image": "flywheel/dicom-send:2.1.1_rc0"
},
"flywheel": {
"suite": "DCMTK"
Expand Down
4 changes: 2 additions & 2 deletions utils/report_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def make_flywheel_path(api_key, acq_id, file_name):
acq = fw.get_acquisition(acq_id)
ses_id = acq.session
group = fw.get_group(acq.parents.group)
project = group.projects.find(f"_id={acq.parents.project}")[0]
session = project.sessions.find(f"_id={acq.parents.session}")[0]
project = fw.get_project(acq.parents.project)
session = fw.get_session(acq.parents.session)

fw_path = (
f"{group.label}/{project.label}/{session.subject.label}/{session.label}/"
Expand Down