-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTiltControlOnlineDecoder.py
468 lines (419 loc) · 22 KB
/
TiltControlOnlineDecoder.py
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
# TiltContol Online Decoder 12/13/2019 Working, check good / bad neurons to improve accuracy
import definitions
from definitions import *
import threading
from threading import Thread
from multiprocessing import *
import numpy as np
import xlwt
import csv
import TestRunwLoadCells
from TestRunwLoadCells import *
from sklearn.metrics import confusion_matrix
from MAPOnlineDecoderBMIFixPause import *
### TO TEST: HOW PAUSE WORKS, CHECK PRINT STATEMENTS ARE CORRECT, WHILE LOOP IS WORKING, EACH TIME.SLEEP IS CHANGED TO A DURATION
##Parameters:0
#Tilt Types: (1, 3, 4, 6)
#make sure that NI-DAQ are not using the lines at the same time, i.e. test panel
#data array for Dev3/port0/line0:7 corresponds to channels going to SI Programmer
# lines([0,1,2,3,4,5,6,7])
#tilt = np.array([IN3,IN4,IN5/cwjog,IN6/ccwjog(Go_5V),Wait_5V,?,?,?])
# Tilts have been edited to work with Si Tilt Program
#BMITiltProgram6b- from Nate B's work (renamed a copy to TiltControl)
##Load Cells
##Transducer 2 (26922)
class StopThread(threading.Thread):
def __init__(self):
self.taskstop = nidaqmx.Task()
self.taskstop.di_channels.add_di_chan("Dev4/port2/line6", line_grouping = LineGrouping.CHAN_PER_LINE)
self.taskstop.start()
def run(self):
stop_time = time.time()
stoppulse = self.taskstop.read(number_of_samples_per_channel = 1)
return stoppulse
def end(self):
self.taskstop.stop()
def LoadCellThread():
Chan_list = ["Dev6/ai18", "Dev6/ai19", "Dev6/ai20", "Dev6/ai21", "Dev6/ai22", "Dev6/ai23","Dev6/ai32", "Dev6/ai33", "Dev6/ai34", "Dev6/ai35", "Dev6/ai36", "Dev6/ai37","Dev6/ai38", "Dev6/ai39", "Dev6/ai48", "Dev6/ai49", "Dev6/ai50", "Dev6/ai51", "Strobe", "Start", "Inclinometer", 'Timestamp']
with nidaqmx.Task() as task:
#######################################################
sheetName = 'csm014_12122019_Week2SCI_tilt_BMIDay1' #CSM014_12092019_Week2SCI_tilt_openloop3
#######################################################
with open(sheetName + '.csv','w+',newline='') as f:
###Initialize AI Voltage Channels to record from
task.ai_channels.add_ai_voltage_chan("Dev6/ai18:23,Dev6/ai32:39,Dev6/ai48:51")
task.ai_channels.add_ai_voltage_chan("Dev6/ai8:10")
### Task Sample Clock Timing #/Dev6/PFI7
task.timing.cfg_samp_clk_timing(1000, source = "", sample_mode= AcquisitionType.CONTINUOUS, samps_per_chan = 1000)
### Task DI Start Trigger #/Dev6/PFI8
task.triggers.start_trigger.cfg_dig_edge_start_trig("/Dev6/PFI8", trigger_edge = Edge.RISING)
###Initiate Variables
samples = 1000
channels = len(Chan_list) - 1
counter = 0
###Collects data and time
data = [[0 for i in range(samples)] for i in range(channels)]
tic = round(0,3)
#toc = round((time.time()-tic),3)
###Process time
ticsamps = np.linspace(tic,(tic+1),samples)
#ticsamps = np.linspace(toc,(toc+1),samples)
ticsamps = ticsamps.tolist()
data.append(ticsamps)
###
total = samples*len(data)
channelList = np.zeros(total).reshape(len(data),samples)
running = True
taskstopthread = StopThread()
##############Read and Record Continuous Loop
writer = csv.writer(f)
writer.writerow(Chan_list)
print('Start sort client')
task.start()
while running == True:
## try:
if counter == 0:
data = task.read(samples, -1)
tic = round(0,3)
counter = counter + 1
else:
print('loop')
data = task.read(samples)
## data = task.register_every_n_samples_acquired_into_buffer_event(1000, callbackloop)
tic = tic + 1.001
counter = counter + 1
ticsamps = np.linspace(tic,(tic+1),samples)
ticsamps = ticsamps.tolist()
data.append(ticsamps)
for key in range(len(data)):
for i in range(samples):
channelList[key][i] = data[key][i]
for i in range(samples):
row = [item[i] for item in channelList]
writer.writerow(row)
stahp = taskstopthread.run()
if stahp ==[False]:
task.stop()
print('writing final samples')
## except:
## print('break')
## break
print('done')
taskstopthread.end()
#############End of LoadCells
#####################################################################################################################################################################################################################
#Tilt class beings here
class tiltclass():
def __init__(self):
self.WaterDuration = 0.15
self.punish = np.array([0,0,1,0,0,0,0,0], dtype=np.uint8)
self.reward = np.array([0,0,1,1,0,0,0,0], dtype=np.uint8)
self.start1 = np.array([1,0,0,1,0,0,0,0], dtype=np.uint8)
self.start3 = np.array([1,1,0,1,0,0,0,0], dtype=np.uint8)
self.start4 = np.array([0,0,1,1,0,0,0,0], dtype=np.uint8)
self.start6 = np.array([0,1,1,1,0,0,0,0], dtype=np.uint8)
self.tilt1 = np.array([1,0,0,1,0,0,0,0], dtype=np.uint8)
self.tilt3 = np.array([1,1,0,1,0,0,0,0], dtype=np.uint8)
self.tilt4 = np.array([0,0,1,1,0,0,0,0], dtype=np.uint8)
self.tilt6 = np.array([0,1,1,1,0,0,0,0], dtype=np.uint8)
self.begin = np.array([0,0,0,0,0,0,0,0], dtype=np.uint8)
self.wateron = np.array([0,0,0,0,1,0,0,0], dtype=np.uint8)
#task = Task()
#task.CreateDOChan("/Dev4/port0/line0:7","",PyDAQmx.DAQmx_Val_ChanForAllLines)
#task.StartTask()
#task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data,None,None)
#test = np.array([0,0,0,0,1,1,1,1], dtype=np.uint8)
#testall = np.array([1,1,1,1,1,1,1,1], dtype=np.uint8)
#pseudo-random generator 1,2,3,4
#Task is from PyDAQmx
def tilt(self,i,task,taskinterrupt,tilts,psthclass,client,baseline_recording):
try:
tiltbool = False
foundevent = False
collected_ts = False
calc_psth = False
decodeboolean = False
delay = ((randint(1,50))/100)+ 1.5
#Needs x = choose() as shown below
if int(tilts[i]) == 1:
data = self.tilt1
data2 = self.start1
elif int(tilts[i]) == 2:
data = self.tilt3
data2 = self.start3
elif int(tilts[i]) == 3:
data = self.tilt4
data2 = self.start4
elif int(tilts[i]) == 4:
data = self.tilt6
data2 = self.start6
print(data)
print(i)
print(tilts[i])
#Reduce the timestamps in buffer and wait for pretime to add to buffer.
################################################################################################################################################################################################################
#Time dependent section. Will include the client and decode here.
if tiltbool == False:
res = client.get_ts()
time.sleep(psthclass.pre_time)
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data,None,None)
# time.sleep(0.010)
# task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data2,None,None)
time.sleep(psthclass.post_time)
tiltbool = True
time.sleep(0.075)
# task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
# Get accumulated timestamps
while foundevent == False or collected_ts == False:
res = client.get_ts()
# Print information on the data returned
for t in res: #50ms
# Print information on spike channel 1
if t.Type == PL_SingleWFType and t.Channel in psthclass.total_channel_dict.keys() and t.Unit in psthclass.total_channel_dict[t.Channel]:
psthclass.build_unit(t.Channel,t.Unit,t.TimeStamp)
if foundevent == True and t.TimeStamp >= (psthclass.current_ts + psthclass.post_time):
if collected_ts == False:
collected_ts = True
print('collected ts')
# Print information on events
if t.Type == PL_ExtEventType:
if t.Channel == 257 and foundevent == False: #Channel for Strobed Events.
print(('Event Ts: {}s Ch: {} Unit: {}').format(t.TimeStamp, t.Channel, t.Unit))
print('event')
psthclass.event(t.TimeStamp, t.Unit)
foundevent = True
print('found event and collected ts')
if calc_psth == False and collected_ts == True:
psthclass.psth(True, baseline_recording)
if baseline_recording == False:
psthclass.psth(False, baseline_recording)
calc_psth = True
if baseline_recording == False and foundevent == True and collected_ts == True:
decoderesult = psthclass.decode()
print('decode')
decodeboolean = True
####
if decoderesult == True: #Change statement later for if the decoder is correct.
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.reward,None,None)
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.wateron,None,None)
time.sleep(self.WaterDuration)##### water duration --- can keep this
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
else: ###This will be if decoder is false, have to deal with punishment tilt.
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.punish,None,None)
time.sleep(self.WaterDuration)
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
time.sleep(2)
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
print('delay')
time.sleep(delay) ############################################# delay--- can keep this
if baseline_recording == False:
if decoderesult == True:
time.sleep(0.5)
return False
except KeyboardInterrupt:
if tiltbool == False:
res = client.get_ts()
time.sleep(psthclass.pre_time)
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data,None,None)
# time.sleep(0.010)
# task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data2,None,None)
time.sleep(psthclass.post_time)
tiltbool = True
while foundevent == False or collected_ts == False:
res = client.get_ts()
# Print information on the data returned
for t in res: #50ms
# Print information on spike channel 1
if t.Type == PL_SingleWFType and t.Channel in psthclass.total_channel_dict.keys() and t.Unit in psthclass.total_channel_dict[t.Channel]:
psthclass.build_unit(t.Channel,t.Unit,t.TimeStamp)
if foundevent == True and t.TimeStamp >= (psthclass.current_ts + psthclass.post_time):
collected_ts = True
# Print information on events
if t.Type == PL_ExtEventType:
#print(('Event Ts: {}s Ch: {} Type: {}').format(t.TimeStamp, t.Channel, t.Type))
if t.Channel == 257 and foundevent == False: #Channel for Strobed Events.
print('event')
psthclass.event(t.TimeStamp, t.Unit)
foundevent = True
if calc_psth == False and collected_ts == True:
psthclass.psth(True, baseline_recording)
if baseline_recording == False:
psthclass.psth(False, baseline_recording)
calc_psth = True
if baseline_recording == False and foundevent == True and collected_ts == True:
if decodeboolean == False:
decoderesult = psthclass.decode()
print('decode')
decodeboolean = True
####
if decoderesult == True: #Change statement later for if the decoder is correct.
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.reward,None,None)
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.wateron,None,None)
time.sleep(self.WaterDuration)##### water duration --- can keep this
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
else: ###This will be if decoder is false, have to deal with punishment tilt.
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.punish,None,None)
time.sleep(self.WaterDuration)
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
time.sleep(2)
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,self.begin,None,None)
print('delay')
time.sleep(delay) ############################################# delay--- can keep this
if baseline_recording == False:
if decoderesult == True:
time.sleep(0.5)
return True
## except KeyboardInterrupt:
## try:
## task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,begin,None,None)
## print('\nPausing... (Hit ENTER to continue, type quit to exit.)')
## response = input()
## if response == 'quit':
## exit()
## print('Resuming...')
## except:
## pass ##Need to check how the loop starts again after pausing like this. Might be ok?
def choose():
#No event 2 and 4 for early training
#because they are the fast tilts and animals take longer to get used to them
a = [1]*100
a.extend([2]*100)
a.extend([3]*100)
a.extend([4]*100)
np.random.shuffle(a)
return a
if __name__ == "__main__":
# Create instance of API class
# New Format to compare Channel and Unit. 0 is unsorted. Channels are Dict Keys, Units are in each list.
channel_dict = {1: [1,2], 2: [1,2], 3: [1,2,3], 4: [1,2,3],
6: [1,2], 7: [1,2,3,4], 8: [1,2,3,4],
9: [1,2,3], 10: [1,2],
13: [1,2,3], 14: [1,2,3,4], 15: [1,2,3], 16: [1,2,3],
18: [1], 19: [1,2], 20: [1,2,3,4],
25: [1,2,3], 26: [1], 27: [1], 28: [1],
29: [1], 31: [1], 32: [1]}
pre_time = 0.200 #seconds (This value is negative or whatever you put, ex: put 0.200 for -200 ms)
post_time = 0.200 #seconds
bin_size = 0.020 #seconds
# pre_total_bins = 200 #bins
# post_total_bins = 200 #bins
baseline_recording = False # Set this to True if this is the Baseline Recording
# False if you have a template to load
psthclass = PSTH(channel_dict, pre_time, post_time, bin_size)
tilter = tiltclass()
#### Don't change here
if baseline_recording == False: ### Don't change here
psthclass.loadtemplate()
##Setup for Plexon DO ########### Maybe will use this later?
# compatible_devices = ['PXI-6224', 'PXI-6259']
# plexdo = PyPlexDO()
# doinfo = plexdo.get_digital_output_info()
# device_number = None
# for i in range(doinfo.num_devices):
# if plexdo.get_device_string(doinfo.device_numbers[i]) in compatible_devices:
# device_number = doinfo.device_numbers[i]
# if device_number == None:
# print("No compatible devices found. Exiting.")
# sys.exit(1)
# else:
# print("{} found as device {}".format(plexdo.get_device_string(device_number), device_number))
# res = plexdo.init_device(device_number)
# if res != 0:
# print("Couldn't initialize device. Exiting.")
# sys.exit(1)
# plexdo.clear_all_bits(device_number)
##End Setup for Plexon DO
client = PyPlexClientTSAPI()
# Connect to OmniPlex Server
client.init_client()
begin = np.array([0,0,0,0,0,0,0,0], dtype=np.uint8)
task = PyDAQTask()
taskinterrupt = PyDAQTask()
data = begin
task.CreateDOChan("/Dev4/port0/line0:7","",PyDAQmx.DAQmx_Val_ChanForAllLines)
taskinterrupt.CreateDOChan("/Dev4/port1/line0:7","",PyDAQmx.DAQmx_Val_ChanForAllLines)
task.StartTask()
taskinterrupt.StartTask()
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data,None,None)
taskinterrupt.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,data,None,None)
## For Testing
## tiltstart = Process(target = tilttest, args = '')
## tiltstart.start()
## tiltstart.join()
## LoadCellThread()
## tiltstart.terminate()
sensors = Process(target = LoadCellThread, args = '')
sensors.start()
tic,clk,starttic,start,starttime,running,stoprunning,startpulse,endtime,counter = initialize()
loop = traverseSG()
endgame = loop.run()
tilts = choose()
print('Sensors started, waiting for Start pulse from Plexon,\n press Enter to begin Tilts after starting Plexon Recording.')
while endgame < 2:
endgame = loop.run()
start_time = time.time()
input('Start Pulse Acquired, Press Enter to begin Tilts')
nores = client.get_ts()
time.sleep(3)
####################################################################################################################################################
#Tilt called here.
for i in range(0,400):
try:
pausebool = tilter.tilt(i,task,taskinterrupt,tilts,psthclass,client,baseline_recording)
if pausebool == True:
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,begin,None,None)
print('\nPausing... (Hit ENTER to contrinue, type quit to exit.)')
response = input()
#nores = client.get_ts()
if response == 'quit':
break
#nores = client.get_ts()
time.sleep(0.5)
if endgame < 3:
endgame = loop.run()
except KeyboardInterrupt:
task.WriteDigitalLines(1,1,10.0,PyDAQmx.DAQmx_Val_GroupByChannel,begin,None,None)
print('\nPausing... (Hit ENTER to contrinue, type quit to exit.)')
try:
response = input()
#nores = client.get_ts()
if response == 'quit':
# endgame = 3
break
print('Resuming...')
except:
pass
continue
except TypeError:
continue
######################################################################################################################################################
endgame = 3
try:
print('Stop Plexon Recording.')
task.StopTask()
sensors.terminate()
client.close_client()
psthclass.psthtemplate()
psthclass.savetemplate()
if baseline_recording == False:
print('actual events:y axis, predicted events:x axis')
confusion_matrix_calc = confusion_matrix(psthclass.event_number_list,psthclass.decoder_list)
print(confusion_matrix_calc)
correct_trials = 0
for i in range(0,len(confusion_matrix_calc)):
correct_trials = correct_trials + confusion_matrix_calc[i][i]
decoder_accuracy = correct_trials / len(psthclass.event_number_list)
print(('Accuracy = {} / {} = {}').format(correct_trials, len(psthclass.event_number_list), decoder_accuracy))
print('Stop Plexon Recording.')
else:
print('no conf mat')
print('Stop Plexon Recording.')
while endgame < 4:
endgame = loop.waitforend()
stop_time = time.time()
except KeyboardInterrupt:
sensors.terminate()
pass
print('Done')