Traceback (most recent call last):
File "QC.py", line 359, in <module>
saveThumbnails_nondicom(v,fname_outdir)
File "QC.py", line 181, in saveThumbnails_nondicom
os.makedirs(output + os.sep + v[1])
File "/Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.8/lib/python3.8/os.py", line 223, in makedirs
mkdir(name, mode)
FileExistsError: [Errno 17] File exists: '/Users/censored/mrqy/MRQy/src/mrqy/UserInterface/Data/Jun24test/CT1'
I believe the issue is that when saving the thumbnails, these are stored in a single, flat folder that doesn't follow the original tree structure, so the program finds that the "CT1" folder already exists:
Did you ever run into this issue? And, in general, what tree structure MRQy expects to work correctly? Is there an option to avoid saving the thumbnails?
Also, as a minor comment, the first lines in the output in this case reads:
MRQy is starting....
The number of patients is 4
But in reality, the number of patients is 2, while 4 is the number of series.
Better would be to put each file type in one folder separately. To avoid saving the thumbnails comment the line#359 of the QC.py code (considering you are using the .nii files)
Hi, I'm testing this tool in a folder structure organized as follows:
And I'm getting this error:
I believe the issue is that when saving the thumbnails, these are stored in a single, flat folder that doesn't follow the original tree structure, so the program finds that the "CT1" folder already exists:
Did you ever run into this issue? And, in general, what tree structure MRQy expects to work correctly? Is there an option to avoid saving the thumbnails?
Also, as a minor comment, the first lines in the output in this case reads:
But in reality, the number of patients is 2, while 4 is the number of series.
Thanks!