-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetpath_osort.m
executable file
·38 lines (31 loc) · 1.39 KB
/
setpath_osort.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%
% Run this file to initialize the paths to be able to run osort v4.
%
%=== Windows
basepathCode=[ '/Users/huimin/Documents/Matlab/osort-v4-rel' filesep]; % change this path accordingly
%=== Unix
%basepathCode=[ '/home/urut/svnwork/neuro1/code/osort-v4-rel' filesep]; % change this path accordingly
%=================== Below, no changes necessary
path(path,[basepathCode ]);
path(path,[basepathCode '/code/continuous/']);
path(path,[basepathCode '/code/continuous/neuralynx']);
path(path,[basepathCode '/code/continuous/txt']);
path(path,[basepathCode '/code/sortingNew/']);
path(path,[basepathCode '/code/sortingNew/projectionTest']);
path(path,[basepathCode '/code/sortingNew/model']);
path(path,[basepathCode '/code/sortingNew/model/detection']);
path(path,[basepathCode '/code/sortingNew/evaluation']);
path(path,[basepathCode '/code/osortTextUI']); % text user interface
path(path,[basepathCode '/code/osortGUI']); %graphical user interface
path(path,[basepathCode '/code/helpers']);
path(path,[basepathCode '/code/plotting']);
path(path,[basepathCode '/code/3rdParty/gabbiani']);
path(path,[basepathCode '/code/3rdParty/MClust-3.5/ClusterQuality/']);
if ispc
%Windows version
path(path,[basepathCode '/code/3rdParty/neuralynxWindows']);
else
%Unix version
path(path,[basepathCode '/code/3rdParty/neuralynxUnixAll/binaries']);
end
path(path,[basepathCode '/code/3rdParty/cwtDetection']);