You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to read NIRx data recorded with NIRStar version 15.1, mne.io.read_raw_nirx() raises a runtime error:
RuntimeError: MNE does not support this NIRStar version ("15.1")
After inspection of the source code, the following code appears to be unsupported only for version 15.1
if hdr["GeneralInfo"]["NIRStar"] not in ['"15.0"', '"15.2"', '"15.3"']:
raise RuntimeError(
"MNE does not support this NIRStar version"
f" ({hdr['GeneralInfo']['NIRStar']})"
)
Want to know why and how to read data saved with NIRStar version 15.1