-
Notifications
You must be signed in to change notification settings - Fork 228
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
GE UHP/7T Diffusion SliceTiming #796
Comments
Thanks @psadil for reporting this issue. |
On GE Premier XT, diffusion data with HCP lifespan, ABCD, ADNI3-Adv, UK BioBank protocol is collected with cycling off. With this dataset, DICOM UserData15 (0019,10B6) will be set to 0.72 On GE UHP, ABCD data(with ABCD patch) is collected with cycling off & DICOM UserData15 (0019,10B6) = 0.53 In addition, on UHP and 7T, if 0.5 < UserData15 (0019,10B6) < 1, diffusion cycling is OFF. In short, here is the pseudo-code to generate SliceTiming on Premier/UHP/7T: Updated code on March 14, 2024 (#804) If (Premier) && (UserData15 = 0.72)
diffCyclingModeGE = 0 (off)
- If (UHP or 7T) && (0.5 < UserData15 <1)
+ If (UHP or 7T) && (0.5 <= UserData15 <=1.0)
diffCyclingModeGE = 0 (off) |
GE UHP/7T Diffusion SliceTiming (#796)
The development branch (v1.0.20240222) addressed the issue. @psadil please test your dataset. |
This seems to work for my dataset. I don't have another DWI that was collected on this scanner with an older SoftwareVersion and the same TR, so I can't check for differences in the generated SliceTiming. But the development version of |
After reviewing the GE PSD epi2.e (diffusion) code, updated dcm2niix from
To
|
GE UHP/7T Diffusion SliceTiming Update (#796)
As described #635, if GE Premier/UHP/7T use diffusion gradient cycling, the
SliceTiming
can't be described/generated.Diffusion gradient cycling mode (
d.diffCyclingModeGE
) can be determined based onUserData12
(0019,10B3) and/orUserData15
(0019,10B6).While curent dcm2niix reliably detects the cycling mode, ABCD patch on UHP/7T uses a different value 0.53 for
UserData15
(0019,10B6), compared to Premier 0.72, reporting the following warning despite of data collected with cycling off:User may use the (undocumented) program option(--diffCyclingModeGE 0) to override the cycling mode from DICOM if data is collected with cycling OFF for sure.
The text was updated successfully, but these errors were encountered: