I have MRI data from a Philips scanner that was exported in DICOMDIR structure. This means I have a DICOMDIR file and a folder containing all dicom files. I wish to convert these files to BIDS - I have tried bidskit but with no success.
Do you know any option to perform this conversion?
Thank you for your fast reply. I will take a look at HeuDiConv.
I actually found out that bidskit can also handle the DICOMDIR files… I found that the SequenceName field in these DICOM headers was empty, which lead to the misidentification of the sequence names by dcm2niix. However, the ProtocolName field is not empty.
All I had to do was to change the dcm2niix call, by modifying the file output format from '-f %n--%d--%q--%s'
to '-f %n--%p--%q--%s'.