-
Notifications
You must be signed in to change notification settings - Fork 3
/
TODO
84 lines (56 loc) · 2.08 KB
/
TODO
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
TESTS:
CODE:
* Convert the version of xclust that can analyze waveforms with more than 32 samples
==================================================================================================
==================================================================================================
NOTES
==================================================================================================
==================================================================================================
TESTS TO IMPLEMENT
==================================================================================================
EXTRACTION COMMANDS:
- EEG:
./adextract -eslen80 data/orig.raw -c -o data/eeg.orig.eeg
- Position:
./adextract data/original.pos.raw -o data/original.pos
./posextract data/original.pos -o data/original.p
- Tetrode:
./adextract data/original.spk.raw -eslen80 -t -probe 0 -o data/original.tt
- Spike Parms:
./spikeparms2 data/original2.tt -tetrode -parms t_px,t_py,t_pa,t_pb -o data/original2.pxyabw
ANALYSIS COMMANDS:
- SPIKEAVE:
./spikeavg data/original2.tt -if data/original.cb > data/original.ave
REMOVING HEADERS FROM FILES
===================================================================================================
sed '/start/,/stop/ s/#.*//'
sed '1,/<START>/ d'
CYGWIN INSTALL NOTES
===================================================================================================
Install the following packages:
git
gcc
gcc-g++
gdb
make
libx11-devl
python (under interpreters)
xorg-server
xinit
x-start-menu-icons
tcsh
openssh
Install:
font-adobe-dpi100
font-adobe-dpi75
Installed but didn't fix the problem:
libXft1
libXft-devel
freetype2
Cloning the repository:
You will need to install the appropriate certificate authorities connect to github, see this:
http://stackoverflow.com/questions/3777075/https-github-access/4454754#4454754
Or, just disable cert checks during clone
env GIT_SSL_NO_VERIFY=true git clone https://github...
or disable cert checks for all time
git config --global http.sslVerify false