I am writing to seek your assistance regarding an issue I encountered while using tedana to generate T2* maps. After merging my data with tedana, the resulting T2* map appears to be problematic. Specifically, the values on the horizontal axis of the histogram seem incorrect. Additionally, when I open the T2star.nii file, the image appears abnormal.
Interestingly, when I do not use tedana for merging, the output T2* map is correct. Given this discrepancy, I am uncertain about the root cause of the issue and would greatly appreciate your guidance on how to resolve it.
I just realized this morning that my echo times were being entered in seconds. The Auto_tedana script that is recommended for use after fmriprep pulls the echo times from the bids json which are stored in seconds not milliseconds (at least for mine from a Siemens Prisma). I added this line to Auto_tedana.py
echo_times = [i * 1000 for i in echo_times]
to convert the echo times to milliseconds. Having the echo times in seconds didn’t seem to change anything except the x-axis units for the T2* histogram.