Skip to content

Commit

Permalink
updated mime-like for raw data
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Nov 16, 2023
1 parent 20e5d0b commit e6f984d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions xnat_ingest/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from .base import cli
from .upload import upload
6 changes: 3 additions & 3 deletions xnat_ingest/cli/tests/test_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,17 +159,17 @@ def test_upload(
("atten_corr", "medimage/dicom-series", "AC CT.*"),
(
"listmode",
"medimage/vnd.siemens.biograph-vision-vr20b.pet-list-mode",
"medimage/vnd.siemens.biograph128-vision-vr20b.pet-list-mode",
".*(PET_LISTMODE).*",
),
(
"sinogram",
"medimage/vnd.siemens.biograph-vision-vr20b.pet-sinogram",
"medimage/vnd.siemens.biograph128-vision-vr20b.pet-sinogram",
".*(PET_EM_SINO).*",
),
(
"countrate",
"medimage/vnd.siemens.biograph-vision-vr20b.pet-count-rate",
"medimage/vnd.siemens.biograph128-vision-vr20b.pet-count-rate",
".*(PET_COUNTRATE).*",
),
]:
Expand Down
6 changes: 3 additions & 3 deletions xnat_ingest/tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,17 @@ def dataset(tmp_path: Path) -> Dataset:
("atten_corr", "medimage/dicom-series", "AC CT.*"),
(
"listmode",
"medimage/vnd.siemens.biograph-vision-vr20b.pet-list-mode",
"medimage/vnd.siemens.biograph128-vision-vr20b.pet-list-mode",
".*(PET_LISTMODE).*",
),
(
"sinogram",
"medimage/vnd.siemens.biograph-vision-vr20b.pet-sinogram",
"medimage/vnd.siemens.biograph128-vision-vr20b.pet-sinogram",
".*(PET_EM_SINO).*",
),
(
"countrate",
"medimage/vnd.siemens.biograph-vision-vr20b.pet-count-rate",
"medimage/vnd.siemens.biograph128-vision-vr20b.pet-count-rate",
".*(PET_COUNTRATE).*",
),
]:
Expand Down

0 comments on commit e6f984d

Please sign in to comment.