I’m working with raw Brain Vision EEG data that was originally referenced to Cz, so this channel is not included in the data. I want to add Cz back as a flat channel and then rereference to TP9/TP10. Currently, I’m using the following approach:
- Use mne.add_reference_channels to add Cz as a flat channel
- Run the MNE-BIDS-Pipeline (eeg_reference = [“TP9”, “TP10”] → see Implementing subject-specific EEG reference in mne-bids-pipeline)
However, I’ve noticed that when I add the Cz channel before running the pipeline, the PSD plots for Raw (original) and Raw (filtered) show Cz at -3000 dB. It seems that the pipeline is filtering and plotting the data before rereferencing.
Is there a proper way to add a reference channel (Cz in this case) within the MNE-BIDS-Pipeline?
Thank you!