2
2
3
3
import os
4
4
from pysolo_path import panelPath , imgPath
5
- from convert import c2d
5
+ from convert import c2d , c2b
6
6
os .sys .path .append (panelPath )
7
7
8
8
from default_panels import CustTableGrid , gridlib , SavePreferenceFile , FileDrop
@@ -915,19 +915,17 @@ def OnAnalysisLoad(self, checkOnlyFiles = False, evt = None):
915
915
916
916
datatype = userConfig ['DAMtype' ] #Channel, Monitor, pvg_distance, pvg_beam
917
917
918
- if datatype == 'Monitor' or datatype == 'pvg_beam' :
918
+ if datatype == 'Monitor' :
919
919
self .LoadRawDataMonitor (inputPath , checkOnlyFiles )
920
920
elif datatype == 'pvg_distance' :
921
- self .LoadRawDataVideoDistance (inputPath , checkOnlyFiles )
921
+ self .LoadRawDataVideo (inputPath , checkOnlyFiles , mode = 'distance' )
922
922
elif datatype == 'pvg_beam' :
923
- self .LoadRawDataVideoBeam (inputPath , checkOnlyFiles )
924
-
923
+ self .LoadRawDataVideo (inputPath , checkOnlyFiles , mode = 'beam' )
925
924
elif datatype == 'Channel' and GUI ['datatype' ] == 'Regular' :
926
925
self .LoadRawDataChannel (inputPath , checkOnlyFiles )
927
926
elif datatype == 'Channel' and GUI ['datatype' ] == 'Video' :
928
927
print ("NOT SUPPORTED" )
929
928
930
-
931
929
else :
932
930
933
931
dlg = wx .MessageDialog (self , 'Please, check your entries.\n Some 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):
1330
1328
elif count > 0 :
1331
1329
(keepGoing , skip ) = self .dlgPD .Update (count , msg )
1332
1330
1333
- def LoadRawDataVideoDistance (self , inputPath , checkFilesOnly = False , timedData = True ): #USER DEFINED
1331
+ def LoadRawDataVideo (self , inputPath , checkFilesOnly = False , timedData = True , mode = 'distance' ): #USER DEFINED
1334
1332
"""
1335
1333
Takes the data from the folder where the raw data are placed
1336
1334
Uses the one file one monitor syntax
@@ -1362,7 +1360,6 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
1362
1360
year = '%s' % self .DAM [k ].getDatesRange ()[2 ][d ]
1363
1361
filepath = '%s/%s/%s%s/' % (year , month , month , day )
1364
1362
1365
-
1366
1363
1367
1364
for f in range (self .DAM [k ].totFlies ):
1368
1365
if PDcount < 0 : break
@@ -1373,7 +1370,6 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
1373
1370
1374
1371
new_monitor = (filename != prev_filename ); prev_filename = filename
1375
1372
1376
-
1377
1373
if checkFilesOnly :
1378
1374
1379
1375
if not os .path .exists (fullpath ):
@@ -1387,8 +1383,9 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
1387
1383
if 1 == 1 : # to set the contents to the current fly
1388
1384
1389
1385
if new_monitor :
1390
- DAMf = c2d (fullpath )
1391
1386
1387
+ if mode == 'distance' : DAMf = c2d (fullpath )
1388
+ elif mode == 'beam' : DAMf = c2b (fullpath )
1392
1389
1393
1390
rawData = np .zeros ((1440 ,32 ))
1394
1391
c = 0 ; cf = 0
@@ -1422,8 +1419,6 @@ def LoadRawDataVideoDistance(self, inputPath, checkFilesOnly = False, timedData=
1422
1419
self .ProgressBarDlg (- 2 ,'End.' )
1423
1420
1424
1421
1425
-
1426
-
1427
1422
def LoadRawDataMonitor (self , inputPath , checkFilesOnly = False , timedData = True ): #USER DEFINED
1428
1423
"""
1429
1424
Takes the data from the folder where the raw data are placed
@@ -1524,86 +1519,6 @@ def LoadRawDataMonitor(self, inputPath, checkFilesOnly = False, timedData=True):
1524
1519
self .ProgressBarDlg (- 2 ,'End.' )
1525
1520
1526
1521
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!\n Make 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.\n You 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
-
1607
1522
1608
1523
def LoadRawDataChannel (self , inputPath , checkFilesOnly = False , timedData = True ): #USER DEFINED
1609
1524
"""
0 commit comments