When running the BIDS pipeline on a partially converted directory, the pipeline fails with
json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
This seems to happen when trying to convert a subject number less than a number that's already been converted (eg, trying to convert subject 30 when the directory already contains converted data up to subject 50). I'm pretty sure I traced this to an issue with how participants.tsv is being written out. Something about parsing the EEG data is trying to read this file if it exists, and it doesn't like the single or double quotes.
When running the BIDS pipeline on a partially converted directory, the pipeline fails with
json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 2 (char 1)This seems to happen when trying to convert a subject number less than a number that's already been converted (eg, trying to convert subject 30 when the directory already contains converted data up to subject 50). I'm pretty sure I traced this to an issue with how
participants.tsvis being written out. Something about parsing the EEG data is trying to read this file if it exists, and it doesn't like the single or double quotes.