Skip to content

Commit

Permalink
usability fixes; cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-s committed Dec 16, 2016
1 parent 38c63b8 commit a25c4a7
Show file tree
Hide file tree
Showing 14 changed files with 6 additions and 1,124 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions @spikesort/removeDoublets.m
Expand Up @@ -33,7 +33,7 @@ function removeDoublets(s)
end
end

if s.pref.ssDebug
if s.verbosity
cprintf('green','\n[INFO]')
cprintf('text', [' B2A doublet resolution.' oval(length(B2A)) ' spikes swapped'])

Expand Down Expand Up @@ -65,7 +65,7 @@ function removeDoublets(s)
B = sort(unique([B(:); A2B_cand(:)]));
A = setdiff(A,A2B_cand);

if s.pref.ssDebug
if s.verbosity
cprintf('green','\n[INFO]')
cprintf('text', [' B2A doublet resolution.' oval(length(A2B_cand)) ' spikes swapped'])
end
Expand Down
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -57,7 +57,7 @@ brew install tag

This implementation of t-SNE is the the fastest I know of, and gets faster the more cores you throw at it. Follow the installation instructions [here](https://github.com/DmitryUlyanov/Multicore-TSNE#install). macOS users, [see this](https://github.com/DmitryUlyanov/Multicore-TSNE/issues/1#issuecomment-262938483) for installation troubleshooting.

You then need to tell MATLAB where `Multicore-TSNE is installed`. To do this,
You then need to tell MATLAB where `Multicore-TSNE` is installed. To do this,

1. first determine where it is installed (`pip show MulticoreTSNE`)
2. Copy and paste this code to your MATLAB `startup.m` (use `edit startup.m`)
Expand All @@ -79,6 +79,8 @@ setenv('PATH', path1);

## Architecture

![](images/arch.png)

`spikesort` is built around a plugin architecture for the three most important things it does:

* Data handling
Expand Down
2 changes: 1 addition & 1 deletion build_number
@@ -1 +1 @@
247
248
33 changes: 0 additions & 33 deletions console.log

This file was deleted.

1 change: 0 additions & 1 deletion docs/README.md
Expand Up @@ -15,7 +15,6 @@ deltat = 1e-4; % what is the time step of the data?
%% ~~~~~~~~~~~~~~~~~ GENERAL ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ssDebug = false; % should spikesort run in debug mode?
useFastBandPass = true; % use a fast, FFT-based bandPass?
%% ~~~~~~~~~~~~~~~~~ DISPLAY ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
154 changes: 0 additions & 154 deletions obsolete/mergeData.m

This file was deleted.

48 changes: 0 additions & 48 deletions obsolete/removeArtifactsUsingTemplate.m

This file was deleted.

81 changes: 0 additions & 81 deletions obsolete/ssdm_2DFracAmpISI.m

This file was deleted.

13 changes: 0 additions & 13 deletions obsolete/ssdm_2DnormPCA.m

This file was deleted.

0 comments on commit a25c4a7

Please sign in to comment.