-
Notifications
You must be signed in to change notification settings - Fork 19
/
eVOLVER.py
executable file
·735 lines (652 loc) · 30.7 KB
/
eVOLVER.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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
#!/usr/bin/env python3
import os
import sys
import time
import pickle
import shutil
import logging
import argparse
import numpy as np
import json
import traceback
from scipy import stats
from socketIO_client import SocketIO, BaseNamespace
from nbstreamreader import NonBlockingStreamReader as NBSR
import custom_script
from custom_script import EXP_NAME
from custom_script import EVOLVER_PORT, OPERATION_MODE
from custom_script import STIR_INITIAL, TEMP_INITIAL
# Should not be changed
# vials to be considered/excluded should be handled
# inside the custom functions
VIALS = [x for x in range(16)]
SAVE_PATH = os.path.dirname(os.path.realpath(__file__))
EXP_DIR = os.path.join(SAVE_PATH, EXP_NAME)
OD_CAL_PATH = os.path.join(SAVE_PATH, 'od_cal.json')
TEMP_CAL_PATH = os.path.join(SAVE_PATH, 'temp_cal.json')
PUMP_CAL_PATH = os.path.join(SAVE_PATH, 'pump_cal.json')
JSON_PARAMS_FILE = os.path.join(SAVE_PATH, 'eVOLVER_parameters.json')
SIGMOID = 'sigmoid'
LINEAR = 'linear'
THREE_DIMENSION = '3d'
logger = logging.getLogger('eVOLVER')
paused = False
EVOLVER_NS = None
class EvolverNamespace(BaseNamespace):
start_time = None
use_blank = False
OD_initial = None
experiment_params = None
ip_address = None
exp_dir = SAVE_PATH
def on_connect(self, *args):
print("Connected to eVOLVER as client")
logger.info('connected to eVOLVER as client')
def on_disconnect(self, *args):
print("Disconected from eVOLVER as client")
logger.info('disconnected to eVOLVER as client')
def on_reconnect(self, *args):
print("Reconnected to eVOLVER as client")
logger.info("reconnected to eVOLVER as client")
def on_broadcast(self, data):
logger.info('Broadcast received')
elapsed_time = round((time.time() - self.start_time) / 3600, 4)
logger.info('Elapsed time: %.4f hours' % elapsed_time)
print("{0}: {1} Hours".format(EXP_NAME, elapsed_time))
# are the calibrations in yet?
if not self.check_for_calibrations():
logger.warning('Calibration files still missing, skipping custom '
'functions')
return
with open(OD_CAL_PATH) as f:
od_cal = json.load(f)
with open(TEMP_CAL_PATH) as f:
temp_cal = json.load(f)
# apply calibrations
# update temperatures if needed
data = self.transform_data(data, VIALS, od_cal, temp_cal)
if data is None:
logger.error('could not tranform raw data, skipping user-'
'defined functions')
return
# should we "blank" the OD?
if self.use_blank and self.OD_initial is None:
logger.info('setting initial OD reading')
self.OD_initial = data['transformed']['od']
elif self.OD_initial is None:
self.OD_initial = np.zeros(len(VIALS))
data['transformed']['od'] = (data['transformed']['od'] -
self.OD_initial)
# save data
try:
self.save_data(data['transformed']['od'], elapsed_time,
VIALS, 'OD')
self.save_data(data['transformed']['temp'], elapsed_time,
VIALS, 'temp')
for param in od_cal['params']:
self.save_data(data['data'].get(param, []), elapsed_time,
VIALS, param + '_raw')
for param in temp_cal['params']:
self.save_data(data['data'].get(param, []), elapsed_time,
VIALS, param + '_raw')
except OSError:
logger.info("Broadcast received before experiment initialization - skipping custom function...")
return
# run custom functions
self.custom_functions(data, VIALS, elapsed_time)
# save variables
self.save_variables(self.start_time, self.OD_initial)
# Restart logging for db/gdrive syncing
logging.shutdown()
logging.getLogger('eVOLVER')
def on_activecalibrations(self, data):
print('Calibrations recieved')
logger.info('Calibrations recieved')
for calibration in data:
if calibration['calibrationType'] == 'od':
file_path = OD_CAL_PATH
elif calibration['calibrationType'] == 'temperature':
file_path = TEMP_CAL_PATH
elif calibration['calibrationType'] == 'pump':
file_path = PUMP_CAL_PATH
else:
continue
for fit in calibration['fits']:
if fit['active']:
with open(file_path, 'w') as f:
json.dump(fit, f)
# Create raw data directories and files for params needed
for param in fit['params']:
if not os.path.isdir(os.path.join(EXP_DIR, param + '_raw')) and param != 'pump':
os.makedirs(os.path.join(EXP_DIR, param + '_raw'))
for x in range(len(fit['coefficients'])):
exp_str = "Experiment: {0} vial {1}, {2}".format(EXP_NAME,
x,
time.strftime("%c"))
self._create_file(x, param + '_raw', defaults=[exp_str])
break
def request_calibrations(self):
logger.debug('requesting active calibrations')
self.emit('getactivecal',
{}, namespace = '/dpu-evolver')
def transform_data(self, data, vials, od_cal, temp_cal):
od_data_2 = None
if od_cal['type'] == THREE_DIMENSION:
od_data_2 = data['data'].get(od_cal['params'][1], None)
od_data = data['data'].get(od_cal['params'][0], None)
temp_data = data['data'].get(temp_cal['params'][0], None)
set_temp_data = data['config'].get('temp', {}).get('value', None)
if od_data is None or temp_data is None or set_temp_data is None:
print('Incomplete data recieved, Error with measurement')
logger.error('Incomplete data received, error with measurements')
return None
if 'NaN' in od_data or 'NaN' in temp_data or 'NaN' in set_temp_data:
print('NaN recieved, Error with measurement')
logger.error('NaN received, error with measurements')
return None
od_data = np.array([float(x) for x in od_data])
if od_data_2:
od_data_2 = np.array([float(x) for x in od_data_2])
temp_data = np.array([float(x) for x in temp_data])
set_temp_data = np.array([float(x) for x in set_temp_data])
temps = []
for x in vials:
file_name = "vial{0}_temp_config.txt".format(x)
file_path = os.path.join(EXP_DIR, 'temp_config', file_name)
temp_set_data = np.genfromtxt(file_path, delimiter=',')
temp_set = temp_set_data[len(temp_set_data)-1][1]
temps.append(temp_set)
od_coefficients = od_cal['coefficients'][x]
temp_coefficients = temp_cal['coefficients'][x]
try:
if od_cal['type'] == SIGMOID:
#convert raw photodiode data into ODdata using calibration curve
od_data[x] = np.real(od_coefficients[2] -
((np.log10((od_coefficients[1] -
od_coefficients[0]) /
(float(od_data[x]) -
od_coefficients[0])-1)) /
od_coefficients[3]))
if not np.isfinite(od_data[x]):
od_data[x] = 'NaN'
logger.debug('OD from vial %d: %s' % (x, od_data[x]))
else:
logger.debug('OD from vial %d: %.3f' % (x, od_data[x]))
elif od_cal['type'] == THREE_DIMENSION:
od_data[x] = np.real(od_coefficients[0] +
(od_coefficients[1]*od_data[x]) +
(od_coefficients[2]*od_data_2[x]) +
(od_coefficients[3]*(od_data[x]**2)) +
(od_coefficients[4]*od_data[x]*od_data_2[x]) +
(od_coefficients[5]*(od_data_2[x]**2)))
else:
logger.error('OD calibration not of supported type!')
od_data[x] = 'NaN'
except ValueError:
print("OD Read Error")
logger.error('OD read error for vial %d, setting to NaN' % x)
od_data[x] = 'NaN'
try:
temp_data[x] = (float(temp_data[x]) *
temp_coefficients[0]) + temp_coefficients[1]
logger.debug('temperature from vial %d: %.3f' % (x, temp_data[x]))
except ValueError:
print("Temp Read Error")
logger.error('temperature read error for vial %d, setting to NaN'
% x)
temp_data[x] = 'NaN'
try:
set_temp_data[x] = (float(set_temp_data[x]) *
temp_coefficients[0]) + temp_coefficients[1]
logger.debug('set_temperature from vial %d: %.3f' % (x,
set_temp_data[x]))
except ValueError:
print("Set Temp Read Error")
logger.error('set temperature read error for vial %d, setting to NaN'
% x)
set_temp_data[x] = 'NaN'
temps = np.array(temps)
# update temperatures only if difference with expected
# value is above 0.2 degrees celsius
delta_t = np.abs(set_temp_data - temps).max()
if delta_t > 0.2:
logger.info('updating temperatures (max. deltaT is %.2f)' %
delta_t)
coefficients = temp_cal['coefficients']
raw_temperatures = [str(int((temps[x] - temp_cal['coefficients'][x][1]) /
temp_cal['coefficients'][x][0]))
for x in vials]
self.update_temperature(raw_temperatures)
else:
# config from server agrees with local config
# report if actual temperature doesn't match
delta_t = np.abs(temps - temp_data).max()
if delta_t > 0.2:
logger.debug('actual temperature doesn\'t match configuration '
'(yet? max deltaT is %.2f)' % delta_t)
logger.debug('temperature config: %s' % temps)
logger.debug('actual temperatures: %s' % temp_data)
# add a new field in the data dictionary
data['transformed'] = {}
data['transformed']['od'] = od_data
data['transformed']['temp'] = temp_data
return data
def update_stir_rate(self, stir_rates, immediate = False):
data = {'param': 'stir', 'value': stir_rates,
'immediate': immediate, 'recurring': True}
logger.debug('stir rate command: %s' % data)
self.emit('command', data, namespace = '/dpu-evolver')
def update_temperature(self, temperatures, immediate = False):
data = {'param': 'temp', 'value': temperatures,
'immediate': immediate, 'recurring': True}
logger.debug('temperature command: %s' % data)
self.emit('command', data, namespace = '/dpu-evolver')
def fluid_command(self, MESSAGE):
logger.debug('fluid command: %s' % MESSAGE)
command = {'param': 'pump', 'value': MESSAGE,
'recurring': False ,'immediate': True}
self.emit('command', command, namespace='/dpu-evolver')
def update_chemo(self, data, vials, bolus_in_s, period_config, immediate = False):
current_pump = data['config']['pump']['value']
MESSAGE = {'fields_expected_incoming': 49,
'fields_expected_outgoing': 49,
'recurring': True,
'immediate': immediate,
'value': ['--'] * 48,
'param': 'pump'}
for x in vials:
# stop pumps if period is zero
if period_config[x] == 0:
# influx
MESSAGE['value'][x] = '0|0'
# efflux
MESSAGE['value'][x + 16] = '0|0'
else:
# influx
MESSAGE['value'][x] = '%.2f|%d' % (bolus_in_s[x], period_config[x])
# efflux
MESSAGE['value'][x + 16] = '%.2f|%d' % (bolus_in_s[x] * 2,
period_config[x])
if MESSAGE['value'] != current_pump:
logger.info('updating chemostat: %s' % MESSAGE)
self.emit('command', MESSAGE, namespace = '/dpu-evolver')
def stop_all_pumps(self, ):
data = {'param': 'pump',
'value': ['0'] * 48,
'recurring': False,
'immediate': True}
logger.info('stopping all pumps')
self.emit('command', data, namespace = '/dpu-evolver')
def _create_file(self, vial, param, directory=None, defaults=None):
if defaults is None:
defaults = []
if directory is None:
directory = param
file_name = "vial{0}_{1}.txt".format(vial, param)
file_path = os.path.join(EXP_DIR, directory, file_name)
text_file = open(file_path, "w")
for default in defaults:
text_file.write(default + '\n')
text_file.close()
def initialize_exp(self, vials, experiment_params, log_name, quiet, verbose, ip_address, always_yes = False):
self.ip_address = ip_address
self.experiment_params = experiment_params
logger.info('initializing experiment')
if os.path.exists(EXP_DIR):
setup_logging(log_name, quiet, verbose)
logger.info('found an existing experiment')
exp_continue = None
if always_yes:
exp_continue = 'y'
else:
while exp_continue not in ['y', 'n']:
exp_continue = input('Continue from existing experiment? (y/n): ')
else:
exp_continue = 'n'
if exp_continue == 'n':
if os.path.exists(EXP_DIR):
exp_overwrite = None
if always_yes:
exp_overwrite = 'y'
else:
while exp_overwrite not in ['y', 'n']:
exp_overwrite = input('Directory aleady exists. '
'Overwrite with new experiment? (y/n): ')
logger.info('data directory already exists')
if exp_overwrite == 'y':
logger.info('deleting existing data directory')
shutil.rmtree(EXP_DIR)
else:
print('Change experiment name in custom_script.py '
'and then restart...')
logger.warning('not deleting existing data directory, exiting')
sys.exit(1)
start_time = time.time()
self.request_calibrations()
logger.debug('creating data directories')
os.makedirs(os.path.join(EXP_DIR, 'OD'))
os.makedirs(os.path.join(EXP_DIR, 'temp'))
os.makedirs(os.path.join(EXP_DIR, 'temp_config'))
os.makedirs(os.path.join(EXP_DIR, 'pump_log'))
os.makedirs(os.path.join(EXP_DIR, 'ODset'))
os.makedirs(os.path.join(EXP_DIR, 'growthrate'))
os.makedirs(os.path.join(EXP_DIR, 'chemo_config'))
setup_logging(log_name, quiet, verbose)
for x in vials:
exp_str = "Experiment: {0} vial {1}, {2}".format(EXP_NAME,
x,
time.strftime("%c"))
# make OD file
self._create_file(x, 'OD', defaults=[exp_str])
# make temperature data file
self._create_file(x, 'temp')
# make temperature configuration file
self._create_file(x, 'temp_config',
defaults=[exp_str,
"0,{0}".format(TEMP_INITIAL[x])])
# make pump log file
self._create_file(x, 'pump_log',
defaults=[exp_str,
"0,0"])
# make ODset file
self._create_file(x, 'ODset',
defaults=[exp_str,
"0,0"])
# make growth rate file
self._create_file(x, 'gr',
defaults=[exp_str,
"0,0"],
directory='growthrate')
# make chemostat file
self._create_file(x, 'chemo_config',
defaults=["0,0,0",
"0,0,0"],
directory='chemo_config')
stir_rate = STIR_INITIAL
temp_values = TEMP_INITIAL
if self.experiment_params:
stir_rate = list(map(lambda x: x['stir'], self.experiment_params['vial_configuration']))
temp_values = list(map(lambda x: x['temp'], self.experiment_params['vial_configuration']))
self.update_stir_rate(stir_rate)
if always_yes:
exp_blank = 'y'
else:
exp_blank = input('Calibrate vials to blank? (y/n): ')
if exp_blank == 'y':
# will do it with first broadcast
self.use_blank = True
logger.info('will use initial OD measurement as blank')
else:
self.use_blank = False
self.OD_initial = np.zeros(len(vials))
else:
# load existing experiment
pickle_name = "{0}.pickle".format(EXP_NAME)
pickle_path = os.path.join(EXP_DIR, pickle_name)
logger.info('loading previous experiment data: %s' % pickle_path)
with open(pickle_path, 'rb') as f:
loaded_var = pickle.load(f)
x = loaded_var
start_time = x[0]
self.OD_initial = x[1]
# copy current custom script to txt file
backup_filename = '{0}_{1}.txt'.format(EXP_NAME,
time.strftime('%y%m%d_%H%M'))
shutil.copy(os.path.join(SAVE_PATH, 'custom_script.py'), os.path.join(EXP_DIR,
backup_filename))
logger.info('saved a copy of current custom_script.py as %s' %
backup_filename)
return start_time
def check_for_calibrations(self):
result = True
if not os.path.exists(OD_CAL_PATH) or not os.path.exists(TEMP_CAL_PATH) or not os.path.exists(PUMP_CAL_PATH):
# log and request again
logger.warning('Calibrations not received yet, requesting again')
self.request_calibrations()
result = False
return result
def save_data(self, data, elapsed_time, vials, parameter):
if len(data) == 0:
return
for x in vials:
file_name = "vial{0}_{1}.txt".format(x, parameter)
file_path = os.path.join(EXP_DIR, parameter, file_name)
text_file = open(file_path, "a+")
text_file.write("{0},{1}\n".format(elapsed_time, data[x]))
text_file.close()
def save_variables(self, start_time, OD_initial):
# save variables needed for restarting experiment later
save_path = os.path.dirname(os.path.realpath(__file__))
pickle_name = "{0}.pickle".format(EXP_NAME)
pickle_path = os.path.join(EXP_DIR, pickle_name)
logger.debug('saving all variables: %s' % pickle_path)
with open(pickle_path, 'wb') as f:
pickle.dump([start_time, OD_initial], f)
def get_flow_rate(self):
pump_cal = None
with open(PUMP_CAL_PATH) as f:
pump_cal = json.load(f)
return pump_cal['coefficients']
def calc_growth_rate(self, vial, gr_start, elapsed_time):
ODfile_name = "vial{0}_OD.txt".format(vial)
# Grab Data and make setpoint
OD_path = os.path.join(EXP_DIR, 'OD', ODfile_name)
OD_data = np.genfromtxt(OD_path, delimiter=',')
raw_time = OD_data[:, 0]
raw_OD = OD_data[:, 1]
raw_time = raw_time[np.isfinite(raw_OD)]
raw_OD = raw_OD[np.isfinite(raw_OD)]
# Trim points prior to gr_start
trim_time = raw_time[np.nonzero(np.where(raw_time > gr_start, 1, 0))]
trim_OD = raw_OD[np.nonzero(np.where(raw_time > gr_start, 1, 0))]
# Take natural log, calculate slope
log_OD = np.log(trim_OD)
slope, intercept, r_value, p_value, std_err = stats.linregress(
trim_time[np.isfinite(log_OD)],
log_OD[np.isfinite(log_OD)])
logger.debug('growth rate for vial %s: %.2f' % (vial, slope))
# Save slope to file
file_name = "vial{0}_gr.txt".format(vial)
gr_path = os.path.join(EXP_DIR, 'growthrate', file_name)
text_file = open(gr_path, "a+")
text_file.write("{0},{1}\n".format(elapsed_time, slope))
text_file.close()
def tail_to_np(self, path, window=10, BUFFER_SIZE=512):
"""
Reads file from the end and returns a numpy array with the data of the last 'window' lines.
Alternative to np.genfromtxt(path) by loading only the needed lines instead of the whole file.
"""
f = open(path, 'rb')
if window == 0:
return []
f.seek(0, os.SEEK_END)
remaining_bytes = f.tell()
size = window + 1 # Read one more line to avoid broken lines
block = -1
data = []
while size > 0 and remaining_bytes > 0:
if remaining_bytes - BUFFER_SIZE > 0:
# Seek back one whole BUFFER_SIZE
f.seek(block * BUFFER_SIZE, os.SEEK_END)
# read BUFFER
bunch = f.read(BUFFER_SIZE)
else:
# file too small, start from beginning
f.seek(0, 0)
# only read what was not read
bunch = f.read(remaining_bytes)
bunch = bunch.decode('utf-8')
data.append(bunch)
size -= bunch.count('\n')
remaining_bytes -= BUFFER_SIZE
block -= 1
data = ''.join(reversed(data)).splitlines()[-window:]
if len(data) < window:
# Not enough data
return np.asarray([])
for c, v in enumerate(data):
data[c] = v.split(',')
try:
data = np.asarray(data, dtype=np.float64)
return data
except ValueError:
# It is reading the header
return np.asarray([])
def custom_functions(self, data, vials, elapsed_time):
# load user script from custom_script.py
mode = self.experiment_params['function'] if self.experiment_params else OPERATION_MODE
if mode == 'turbidostat':
custom_script.turbidostat(self, data, vials, elapsed_time)
elif mode == 'chemostat':
custom_script.chemostat(self, data, vials, elapsed_time)
elif mode == 'growthcurve':
custom_script.growth_curve(self, data, vials, elapsed_time)
else:
# try to load the user function
# if failing report to user
logger.info('user-defined operation mode %s' % mode)
try:
func = getattr(custom_script, mode)
func(self, data, vials, elapsed_time)
except AttributeError:
logger.error('could not find function %s in custom_script.py' %
mode)
print('Could not find function %s in custom_script.py '
'- Skipping user defined functions'%
mode)
def stop_exp(self):
self.stop_all_pumps()
def setup_logging(filename, quiet, verbose):
if quiet:
logging.basicConfig(level=logging.CRITICAL + 10)
else:
if verbose == 0:
level = logging.INFO
elif verbose >= 1:
level = logging.DEBUG
logging.basicConfig(format='%(asctime)s - %(name)s - [%(levelname)s] '
'- %(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
filename=filename,
level=level)
def get_options():
description = 'Run an eVOLVER experiment from the command line'
parser = argparse.ArgumentParser(description=description)
parser.add_argument('-y', '--always-yes', action='store_true',
default=False,
help='Answer yes to all questions '
'(i.e. continues from existing experiment, '
'overwrites existing data and blanks OD '
'measurements)')
parser.add_argument('-l', '--log-name',
default=os.path.join(EXP_DIR, 'evolver.log'),
help='Log file name directory (default: %(default)s)')
parser.add_argument('-i', '--ip-address', action='store', dest='ip_address',
help='IP address of eVOLVER to run experiment on.')
log_nolog = parser.add_mutually_exclusive_group()
log_nolog.add_argument('-v', '--verbose', action='count',
default=0,
help='Increase logging verbosity level to DEBUG '
'(default: INFO)')
log_nolog.add_argument('-q', '--quiet', action='store_true',
default=False,
help='Disable logging to file entirely')
return parser.parse_args(), parser
if __name__ == '__main__':
options, parser = get_options()
#changes terminal tab title in OSX
print('\x1B]0;eVOLVER EXPERIMENT: PRESS Ctrl-C TO PAUSE\x07')
experiment_params = None
if os.path.exists(JSON_PARAMS_FILE):
with open(JSON_PARAMS_FILE) as f:
experiment_params = json.load(f)
evolver_ip = experiment_params['ip'] if experiment_params is not None else options.ip_address
if evolver_ip is None:
logger.error('No IP address found. Please provide on the command line or through the GUI.')
parser.print_help()
sys.exit(2)
socketIO = SocketIO(evolver_ip, EVOLVER_PORT)
EVOLVER_NS = socketIO.define(EvolverNamespace, '/dpu-evolver')
# start by stopping any existing chemostat
EVOLVER_NS.stop_all_pumps()
#
EVOLVER_NS.start_time = EVOLVER_NS.initialize_exp(VIALS,
experiment_params,
options.log_name,
options.quiet,
options.verbose,
evolver_ip,
options.always_yes
)
# Using a non-blocking stream reader to be able to listen
# for commands from the electron app.
nbsr = NBSR(sys.stdin)
paused = False
# logging setup
reset_connection_timer = time.time()
while True:
try:
# infinite loop
# check if a message has come in from the DPU
message = nbsr.readline()
if 'stop-script' in message:
logger.info('Stop message received - halting all pumps');
EVOLVER_NS.stop_exp()
socketIO.disconnect()
if 'pause-script' in message:
print('Pausing experiment', flush = True)
logger.info('Pausing experiment in dpu')
paused = True
EVOLVER_NS.stop_exp()
socketIO.disconnect()
if 'continue-script' in message:
print('Restarting experiment', flush = True)
logger.info('Restarting experiment')
paused = False
socketIO.connect()
if not paused:
socketIO.wait(seconds=0.1)
if time.time() - reset_connection_timer > 3600 and not paused:
# reset connection to avoid buildup of broadcast
# messages (unlikely but could happen for very long
# experiments with slow dpu code/computer)
logger.info('resetting connection to eVOLVER to avoid '
'potential buildup of broadcast messages')
socketIO.disconnect()
socketIO.connect()
reset_connection_timer = time.time()
except KeyboardInterrupt:
try:
print('Ctrl-C detected, pausing experiment')
logger.warning('interrupt received, pausing experiment')
EVOLVER_NS.stop_exp()
# stop receiving broadcasts
socketIO.disconnect()
while True:
key = input('Experiment paused. Press enter key to restart '
' or hit Ctrl-C again to terminate experiment')
logger.warning('resuming experiment')
# no need to have something like "restart_chemo" here
# with the new server logic
socketIO.connect()
break
except KeyboardInterrupt:
print('Second Ctrl-C detected, shutting down')
logger.warning('second interrupt received, terminating '
'experiment')
EVOLVER_NS.stop_exp()
print('Experiment stopped, goodbye!')
logger.warning('experiment stopped, goodbye!')
break
except Exception as e:
logger.critical('exception %s stopped the experiment' % str(e))
print('error "%s" stopped the experiment' % str(e))
traceback.print_exc(file=sys.stdout)
EVOLVER_NS.stop_exp()
print('Experiment stopped, goodbye!')
logger.warning('experiment stopped, goodbye!')
break
# stop experiment one last time
# covers corner case where user presses Ctrl-C twice quickly
socketIO.connect()
EVOLVER_NS.stop_exp()