Dear Constance
If you are not using an MCS amplifier (multi channel system) file format, then indeed, you should not say file_format = mcs_raw_binary :-) I do not know what is the output of your Amplipex system: a raw binary file? A custom proprietary file format? If this is a raw binary file, then you must say
file_format = raw_binary
and then enter manually the extra parameters needed by this file format, i.e. sampling_rate, data_dtype (the type of the data, int16, float32, ...), and if you do have a header, the size of that header (data_offset, but this is optional). Before launching the code, you can always test how data are loaded by using the preview mode (see documentation on-line)
>> spyking-circus mydata.dat -p
I can see that you are using SpyKING CIRCUS 0.5. This version is now able to read various file formats, and the most simple one is the raw_binary one, which is simply a giant matrix of size nb_channels x nb_timesteps saved on your drive. If you have proprietary file format, please tell me how do you load them, because we'll have to think about ways to write a wrapper for the data
Hope this helps,
Pierre