-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Clarify shape of PDT2 images and recommend acq entity for split PDw/T2w images #1448
Conversation
Let me add a short elaboration. I suggested we do not have to treat these images any differently than other T2w and PDw images and use the |
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## master #1448 +/- ##
=======================================
Coverage 87.90% 87.90%
=======================================
Files 14 14
Lines 1273 1273
=======================================
Hits 1119 1119
Misses 154 154 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
Thanks Tibor. I agree. If there is a wording improvement to make that clearer, please feel free to suggest it. |
src/schema/objects/suffixes.yaml
Outdated
(for example, [Johnson et al. 1994](https://pubmed.ncbi.nlm.nih.gov/8010268/)). | ||
If separated into 3D volumes, the `PDw` and `T2w` suffixes SHOULD be used | ||
instead, and an acquisition entity MAY be used to indicate the origin of the | ||
images, for example, `acq-PDT2_PDw.nii` and `acq-PDT2_T2w.nii`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest:
and an acquisition entity MAY be used to distinguish the images from others with the same modality. For example, if the PD/T2 images cover only part of the brain, then acq-partial_PDw.nii
and acq-partial_T2w.nii
. If the PD/T2 images differ from other PDw and T2w images only in the sequence, then acq-PDT2_PDw.nii
and acq-PDT2_T2w.nii
.
b16b57c
to
a145d9e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @effigies for sending out this PR and @tiborauer @nicholst @CPernet for clarifying the use cases of this application, which were not completely resolved during the merging of BEP001. This PR looks good to me and I think it adds to the clarity of the differentiation between weighted and quantitative use cases. |
Thanks for the reviews, all! |
To briefly summarize the discussion in #223, PDT2 sequences are common in clinical settings, taking advantage of view-sharing processes to simultaneously acquire PDw and T2w volumes. It is currently ambiguous how these files should be named if the volumes are split into individual NIfTI files, which is the default behavior of BIDS converters such as dcm2niix.
It was initially proposed to add the
echo-
entity, which would be correct but unique among anatomical images. It was objected that clinical users may not easily recognize whetherecho-1_PDT2
indicates the PDw or T2w image. On the other hand, it is possible to have PDw or T2w images in addition to PDT2 images, and recommendations for consistent unambiguous naming would be desirable.This change intends to clarify that PDT2 images SHOULD be 4D with length 2. If PDT2 images are split, their suffixes SHOULD be PDw and T2w, respectively, and we suggest using the
acq-
parameter to indicate they come from the same source. @tiborauer suggestedacq-partial
; here I proposeacq-PDT2
to be very explicit.The expected impact of this is low, as PDT2 files are rare outside clinical contexts. None appear in OpenNeuro unless they have already been renamed according to the proposed convention.
The practical consequence for the validator are:
Closes #223.