Currently create EDF function depends on functions that only work for bipolar cases (extract_channel_data and extract_channel_header). This makes certain other functions to crash:
https://github.com/mcespedes99
identify_regions in clean_seeg.py is currently failing as the chn_list for the bipolar case has 3 elements per row and the unipolar only has one element, which makes create_EDF to fail. Everything else in the function is working well but the edf file cannot be created.
The rereference function also only works for bipolar case. It's necessary to include tripolar case.
Currently create EDF function depends on functions that only work for bipolar cases (extract_channel_data and extract_channel_header). This makes certain other functions to crash: https://github.com/mcespedes99