You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ifPDcount>0andlen(rawData[cf]) !=1440: additional_error='Not enough bins in the file.\n Only %s bins were found.'%len(content)
1409
+
PDcount=-1
1410
+
1411
+
ifPDcount<0:
1412
+
dlg=wx.MessageDialog(self, 'Error with file!\n%s\n%s'% (fullpath, additional_error), 'Error', wx.OK|wx.ICON_INFORMATION)
1413
+
ifdlg.ShowModal() ==wx.ID_YES: dlg.Destroy()
1414
+
elifPDcount>0andnotcheckFilesOnly:
1415
+
self.ProgressBarDlg(-1,'Saving Data to File...')
1416
+
self.SaveDADData()
1417
+
elifPDcount>0andcheckFilesOnly:
1418
+
dlg=wx.MessageDialog(self, 'All files required for the analysis were found.\nYou may now proceed with fetching the raw data.' , 'All ok.', wx.OK|wx.ICON_INFORMATION)
1419
+
ifdlg.ShowModal() ==wx.ID_YES: dlg.Destroy()
1420
+
1421
+
1422
+
self.ProgressBarDlg(-2,'End.')
1423
+
1424
+
1425
+
1426
+
1427
+
defLoadRawDataMonitor(self, inputPath, checkFilesOnly=False, timedData=True): #USER DEFINED
1428
+
"""
1429
+
Takes the data from the folder where the raw data are placed
1430
+
Uses the one file one monitor syntax
1431
+
"""
1432
+
1433
+
year=month=day=monitor=channel=''
1434
+
PDcount=0
1435
+
additional_error=''
1436
+
prev_filename=''
1437
+
extension=userConfig['DAMextension']
1342
1438
1343
1439
#calculate how many flies we have to analize in total
0 commit comments