-
Notifications
You must be signed in to change notification settings - Fork 244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sorting single channel plexon data #238
Comments
It cannot sort single-channel data, but the way you wrote the binary file seems right. If you want to add dummy channels, make sure they are 0s. There could be a data scaling issue in the Data view, and possibly when you write your channels to int16. You would need to convert to the range that int16 expects, so -2^15 to 2^15. |
The GUI errors are not informative... can you please look in the Matlab command line to and paste the entire output? |
Sure! Getting channel whitening matrix...
|
Looks like it wasn't able to find any spikes. I recommend a few things, try these one by one:
|
Hello @marius10p @AamnaLawrence , I am currently struggling with running KS 2.5 with a single-channel recording. The data is approximately 10 minutes long and there are spikes inside. KS 1.0 was able to detect those. As in KS 1.0 I am inserting the data into a format with 3 dummy channels (zero signals). The fourth channel has the actual data. This described procedure is the same as in KS 1.0, which delivered good results. Since we assume that the template-matching might have improved, we want to switch to KS 2.5. However, adding the dummy channels leads to problems in KS 2.5. The error message that I get is below:
Do you have any ideas? Many thanks! |
I have recorded spike activity using a tungsten electrode using plexon recording system. I converted the .plx to .mat file and then the .mat file to a .dat file using the following piece of code
aa=fopen("nameoffile.dat","w");
fwrite(aa,x,"int16");
fclose(aa);
x has the dimension 1 by number of time points.
I tried to make a single channel probe however, it does not seem to work.
Can kilosort2 sort single channel data?
I also made a dummy channel dataset having 16 channels in which all contained random data and one of them had the spike data. I used the linear 16x1 probe layout but I could not even see my spike data in the "Data view". What am I missing here?
The text was updated successfully, but these errors were encountered: