Skip to content

Commit 3cc0b3f

Browse files
committed
Added support for coordinates-to-distance and coordinates-to-virtual-beam
1 parent 02b0cee commit 3cc0b3f

File tree

1 file changed

+7
-92
lines changed

1 file changed

+7
-92
lines changed

pysolo_db.py

+7-92
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import os
44
from pysolo_path import panelPath, imgPath
5-
from convert import c2d
5+
from convert import c2d, c2b
66
os.sys.path.append(panelPath)
77

88
from default_panels import CustTableGrid, gridlib, SavePreferenceFile, FileDrop
@@ -915,19 +915,17 @@ def OnAnalysisLoad(self, checkOnlyFiles = False, evt = None):
915915

916916
datatype = userConfig['DAMtype'] #Channel, Monitor, pvg_distance, pvg_beam
917917

918-
if datatype == 'Monitor' or datatype == 'pvg_beam':
918+
if datatype == 'Monitor':
919919
self.LoadRawDataMonitor(inputPath, checkOnlyFiles)
920920
elif datatype == 'pvg_distance':
921-
self.LoadRawDataVideoDistance(inputPath, checkOnlyFiles)
921+
self.LoadRawDataVideo(inputPath, checkOnlyFiles, mode='distance')
922922
elif datatype == 'pvg_beam':
923-
self.LoadRawDataVideoBeam(inputPath, checkOnlyFiles)
924-
923+
self.LoadRawDataVideo(inputPath, checkOnlyFiles, mode='beam')
925924
elif datatype == 'Channel' and GUI['datatype'] == 'Regular':
926925
self.LoadRawDataChannel(inputPath, checkOnlyFiles)
927926
elif datatype == 'Channel' and GUI['datatype'] == 'Video':
928927
print ("NOT SUPPORTED")
929928

930-
931929
else:
932930

933931
dlg = wx.MessageDialog(self, 'Please, check your entries.\nSome values are missing or no rows are checked.', 'Error', wx.OK | wx.ICON_INFORMATION)
@@ -1330,7 +1328,7 @@ def ProgressBarDlg(self, count, msg='', max = 100):
13301328
elif count > 0:
13311329
(keepGoing, skip) = self.dlgPD.Update(count, msg)
13321330

1333-
def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=True): #USER DEFINED
1331+
def LoadRawDataVideo(self, inputPath, checkFilesOnly = False, timedData=True, mode='distance'): #USER DEFINED
13341332
"""
13351333
Takes the data from the folder where the raw data are placed
13361334
Uses the one file one monitor syntax
@@ -1362,7 +1360,6 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
13621360
year = '%s' % self.DAM[k].getDatesRange()[2][d]
13631361
filepath = '%s/%s/%s%s/' % (year, month, month, day)
13641362

1365-
13661363

13671364
for f in range (self.DAM[k].totFlies):
13681365
if PDcount < 0: break
@@ -1373,7 +1370,6 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
13731370

13741371
new_monitor = (filename != prev_filename); prev_filename = filename
13751372

1376-
13771373
if checkFilesOnly:
13781374

13791375
if not os.path.exists(fullpath):
@@ -1387,8 +1383,9 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
13871383
if 1==1: # to set the contents to the current fly
13881384

13891385
if new_monitor:
1390-
DAMf = c2d (fullpath)
13911386

1387+
if mode == 'distance': DAMf = c2d (fullpath)
1388+
elif mode == 'beam': DAMf = c2b (fullpath)
13921389

13931390
rawData = np.zeros((1440,32))
13941391
c = 0; cf = 0
@@ -1422,8 +1419,6 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
14221419
self.ProgressBarDlg(-2,'End.')
14231420

14241421

1425-
1426-
14271422
def LoadRawDataMonitor(self, inputPath, checkFilesOnly = False, timedData=True): #USER DEFINED
14281423
"""
14291424
Takes the data from the folder where the raw data are placed
@@ -1524,86 +1519,6 @@ def LoadRawDataMonitor(self, inputPath, checkFilesOnly = False, timedData=True):
15241519
self.ProgressBarDlg(-2,'End.')
15251520

15261521

1527-
def LoadRawDataTank(self, checkFilesOnly = False): #USER DEFINED
1528-
"""
1529-
Takes the data from the folder where the raw data are placed
1530-
Uses the one file one channel syntax
1531-
"""
1532-
1533-
year = month = day = monitor = channel = ''
1534-
PDcount = 0
1535-
extension = userConfig['DAMextension']
1536-
1537-
#calculate total number of flies to be collected - used for the status bar
1538-
totnum = 0
1539-
for row in self.DAM:
1540-
totnum += (row.totDays * row.totFlies)
1541-
1542-
for k in range(0,len(self.DAM)):
1543-
if PDcount < 0: break
1544-
for d in range(0,self.DAM[k].totDays):
1545-
if PDcount < 0: break
1546-
progress = (float(PDcount) / totnum ) * 100
1547-
self.ProgressBarDlg(progress, 'Loading Raw Data.\n %s files of %s processed.' % (PDcount, totnum))
1548-
day = str(self.DAM[k].rangeDays[0][d]).zfill(2)
1549-
month = str(self.DAM[k].rangeDays[1][d]).zfill(2)
1550-
year = str(self.DAM[k].rangeDays[2][d])
1551-
filepath = '%s/%s/%s%s/' % (year, month, month, day)
1552-
1553-
#read and set the data in the light file
1554-
lightFilePath = os.path.join(self.DAMpath, filepath, '%s%sDayLight%s' % (month, day, extension))
1555-
DAMf = open (lightFilePath, 'r')
1556-
lightContent = DAMf.readlines()[4:] #remove 4 lines of headers, should be USERDEFINED
1557-
DAMf.close()
1558-
lights = [int(line.split(' ')[-1][:-2]) for line in lightContent] #take only the 6 digits light info
1559-
self.DAM[k].setLights(d, lights)
1560-
1561-
1562-
for f in range (0,self.DAM[k].totFlies):
1563-
if PDcount < 0: break
1564-
a = self.DAM[k].rangeChannel[1][f]
1565-
monitor = str(self.DAM[k].rangeChannel[1][f]).zfill(3)
1566-
channel = str(self.DAM[k].rangeChannel[0][f]).zfill(2)
1567-
1568-
filename = '%s%sM%sC%s%s' % (month, day, monitor, channel, extension)
1569-
fullpath = os.path.join(self.DAMpath,filepath,filename)
1570-
1571-
if checkFilesOnly:
1572-
1573-
if not os.path.exists(fullpath):
1574-
PDcount = -1
1575-
else:
1576-
PDcount += 1
1577-
1578-
else:
1579-
1580-
DAMf = open (fullpath, 'r')
1581-
content = DAMf.readlines()[4:] #remove 4 lines of headers, should be USERDEFINED
1582-
1583-
DAMf.close()
1584-
response = [int(line[:-4].zfill(3)) or 1000 for line in content] #take everything but the last three digits #if response is 000, put 1000
1585-
content = [int(line[-4:-1]) for line in content] #take last two digits and remove newline character
1586-
self.DAM[k].setResponse(d, f, response[:1440])
1587-
1588-
1589-
self.DAM[k].setFly(d,f, content[:1440]) #1440 should be USERDEFINED
1590-
PDcount += 1
1591-
1592-
if PDcount < 0:
1593-
dlg = wx.MessageDialog(self, 'File not found!\nMake sure the follwing file is existing and accessible\n%s' % fullpath, 'Error', wx.OK | wx.ICON_INFORMATION)
1594-
if dlg.ShowModal() == wx.ID_YES: dlg.Destroy()
1595-
elif PDcount > 0 and not checkFilesOnly:
1596-
self.ProgressBarDlg(-1,'Saving Data to File...')
1597-
self.SaveDADData()
1598-
elif PDcount > 0 and checkFilesOnly:
1599-
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)
1600-
if dlg.ShowModal() == wx.ID_YES: dlg.Destroy()
1601-
1602-
1603-
self.ProgressBarDlg(-2,'End.')
1604-
1605-
1606-
16071522

16081523
def LoadRawDataChannel(self, inputPath, checkFilesOnly = False, timedData=True): #USER DEFINED
16091524
"""

0 commit comments

Comments
 (0)