Skip to content

Commit 02b0cee

Browse files
committed
Now can import directly from pySolo Video coordinates files and
transform into distance - virtual beam not yet supported - requires convert.py from pysolo-video
1 parent dada054 commit 02b0cee

File tree

1 file changed

+102
-6
lines changed

1 file changed

+102
-6
lines changed

pysolo_db.py

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

33
import os
44
from pysolo_path import panelPath, imgPath
5+
from convert import c2d
56
os.sys.path.append(panelPath)
67

78
from default_panels import CustTableGrid, gridlib, SavePreferenceFile, FileDrop
@@ -914,10 +915,13 @@ def OnAnalysisLoad(self, checkOnlyFiles = False, evt = None):
914915

915916
datatype = userConfig['DAMtype'] #Channel, Monitor, pvg_distance, pvg_beam
916917

917-
if datatype == 'Monitor' or datatype == 'pvg_beam' or datatype == 'pvg_distance':
918+
if datatype == 'Monitor' or datatype == 'pvg_beam':
918919
self.LoadRawDataMonitor(inputPath, checkOnlyFiles)
919-
elif datatype == 'Channel' and GUI['datatype'] == 'TANK':
920-
self.LoadRawDataTank(inputPath, checkOnlyFiles)
920+
elif datatype == 'pvg_distance':
921+
self.LoadRawDataVideoDistance(inputPath, checkOnlyFiles)
922+
elif datatype == 'pvg_beam':
923+
self.LoadRawDataVideoBeam(inputPath, checkOnlyFiles)
924+
921925
elif datatype == 'Channel' and GUI['datatype'] == 'Regular':
922926
self.LoadRawDataChannel(inputPath, checkOnlyFiles)
923927
elif datatype == 'Channel' and GUI['datatype'] == 'Video':
@@ -1326,7 +1330,7 @@ def ProgressBarDlg(self, count, msg='', max = 100):
13261330
elif count > 0:
13271331
(keepGoing, skip) = self.dlgPD.Update(count, msg)
13281332

1329-
def LoadRawDataMonitor(self, inputPath, checkFilesOnly = False, timedData=True): #USER DEFINED
1333+
def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=True): #USER DEFINED
13301334
"""
13311335
Takes the data from the folder where the raw data are placed
13321336
Uses the one file one monitor syntax
@@ -1338,7 +1342,99 @@ def LoadRawDataMonitor(self, inputPath, checkFilesOnly = False, timedData=True):
13381342
prev_filename = ''
13391343
extension = userConfig['DAMextension']
13401344

1345+
#calculate how many flies we have to analize in total
1346+
totnum = 0
1347+
for row in self.DAM:
1348+
totnum += (row.totDays * row.totFlies)
1349+
1350+
#self.ProgressBarDlg(0,'Loading Raw Data')
1351+
1352+
1353+
for k in range(len(self.DAM)): # for every DAM
1354+
1355+
for d in range(self.DAM[k].totDays): # for every day
1356+
1357+
progress = ( float(PDcount) / float(totnum) ) * 100.0
1358+
self.ProgressBarDlg( progress, 'Loading Raw Data.\n %s flies of %s processed.' % (PDcount, totnum) )
1359+
1360+
day = '%02d' % self.DAM[k].getDatesRange()[0][d]
1361+
month = '%02d' % self.DAM[k].getDatesRange()[1][d]
1362+
year = '%s' % self.DAM[k].getDatesRange()[2][d]
1363+
filepath = '%s/%s/%s%s/' % (year, month, month, day)
1364+
1365+
1366+
1367+
for f in range (self.DAM[k].totFlies):
1368+
if PDcount < 0: break
1369+
1370+
monitor_name = '%03d' % int(self.DAM[k].rangeChannel[1][f])
1371+
filename = '%s%sM%s%s' % (month, day, monitor_name, extension)
1372+
fullpath = os.path.join(inputPath, filepath, filename)
1373+
1374+
new_monitor = (filename != prev_filename); prev_filename = filename
1375+
1376+
1377+
if checkFilesOnly:
1378+
1379+
if not os.path.exists(fullpath):
1380+
PDcount = -1
1381+
additional_error = 'Make sure the File exists and it is accessible'
1382+
else:
1383+
PDcount += 1 #if no error is encountered will increment PDcount by 1
1384+
1385+
else:
1386+
1387+
if 1==1: # to set the contents to the current fly
1388+
1389+
if new_monitor:
1390+
DAMf = c2d (fullpath)
1391+
1392+
1393+
rawData = np.zeros((1440,32))
1394+
c = 0; cf = 0
1395+
startChannel = self.DAM[k].getChannelName(0, f)
1396+
1397+
for line in DAMf.split('\n')[:-1]:
1398+
try:
1399+
rawData[c] = [ int(float(i)) for i in line.split('\t')[10:] ]
1400+
c += 1
1401+
except:
1402+
print 'Error with file %s at row number %s. Wrong data type? [ %s ]' % (filename, c, line)
13411403

1404+
self.DAM[k].setFly(d,f, rawData[:,cf+startChannel-1])
1405+
cf += 1
1406+
PDcount += 1
1407+
else:
1408+
if PDcount > 0 and len(rawData[cf]) != 1440: additional_error = 'Not enough bins in the file.\n Only %s bins were found.' % len(content)
1409+
PDcount = -1
1410+
1411+
if PDcount < 0:
1412+
dlg = wx.MessageDialog(self, 'Error with file!\n%s\n%s' % (fullpath, additional_error), 'Error', wx.OK | wx.ICON_INFORMATION)
1413+
if dlg.ShowModal() == wx.ID_YES: dlg.Destroy()
1414+
elif PDcount > 0 and not checkFilesOnly:
1415+
self.ProgressBarDlg(-1,'Saving Data to File...')
1416+
self.SaveDADData()
1417+
elif PDcount > 0 and checkFilesOnly:
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+
if dlg.ShowModal() == wx.ID_YES: dlg.Destroy()
1420+
1421+
1422+
self.ProgressBarDlg(-2,'End.')
1423+
1424+
1425+
1426+
1427+
def LoadRawDataMonitor(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']
13421438

13431439
#calculate how many flies we have to analize in total
13441440
totnum = 0
@@ -1397,13 +1493,13 @@ def LoadRawDataMonitor(self, inputPath, checkFilesOnly = False, timedData=True):
13971493

13981494
content = DAMf.readlines()
13991495
for line in content:
1400-
while '\n' in line: line = line.replace('\n', '')
1496+
while '\n' in line: line = line.replace('\n', '') #remove newline characters
14011497
while '\r' in line: line = line.replace('\r', '')
14021498
try:
14031499
rawData[c] = [ int(float(i)) for i in line.split('\t')[10:] ]
14041500
c += 1
14051501
except:
1406-
print 'Error with file %s at row number %s. Wrong data type?' % (filename, c)
1502+
print 'Error with file %s at row number %s. Wrong data type? [ %s ]' % (filename, c, line)
14071503

14081504
DAMf.close()
14091505

0 commit comments

Comments
 (0)