Skip to content

Commit 20b40e1

Browse files
committed
Fixed bug with tags due to some python or python library update
Fixed import of pysolo video raw data and made it consistent with pysolo options
1 parent eece9e1 commit 20b40e1

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

pysolo_db.py

+18-7
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,12 @@ def AddTagToChecked(self, tag_name):
6666
"""
6767
for row in range( self.rowNumber() ):
6868
if self.table.data[row][1] and not self.table.data[row][14]: #if cheched and visible
69-
all_tags = set(self.table.data[row][13].split(';'))
70-
all_tags.discard('')
69+
current_tags = self.table.data[row][13]
70+
if current_tags:
71+
all_tags = set(current_tags.split(';'))
72+
all_tags.discard('')
73+
else:
74+
all_tags = set()
7175
all_tags.add(tag_name)
7276
self.table.data[row][13] = list2str(all_tags, separator=';')
7377

@@ -915,19 +919,26 @@ def OnAnalysisLoad(self, checkOnlyFiles = False, evt = None):
915919
self.DAM.append (DAMslice(row[2], row[3], row[5], row[6], row[7], row[8], row[9], row[10], row[11], row[12]))
916920
#DAMslice(mon, sch, ech, genotype, comment, smont, sd, emont, eday, year, version=pySoloVersion)
917921

918-
datatype = userConfig['DAMtype'] #Channel, Monitor, pvg_distance, pvg_beam
922+
#Input format
923+
datatype = userConfig['DAMtype'] #Channel, Monitor, pvg_distance, pvg_beam, pvg_raw
919924

925+
#TriKinetics Input Data
920926
if datatype == 'Monitor':
921927
self.LoadRawDataMonitor(inputPath, checkOnlyFiles)
922-
elif datatype == 'pvg_distance':
923-
self.LoadRawDataVideo(inputPath, checkOnlyFiles, mode='distance')
924-
elif datatype == 'pvg_beam':
925-
self.LoadRawDataVideo(inputPath, checkOnlyFiles, mode='beam')
926928
elif datatype == 'Channel' and GUI['datatype'] == 'Regular':
927929
self.LoadRawDataChannel(inputPath, checkOnlyFiles)
928930
elif datatype == 'Channel' and GUI['datatype'] == 'Video':
929931
print ("NOT SUPPORTED")
930932

933+
#pySolo Video Input Data
934+
elif datatype == 'pvg_distance' or datatype == 'pvg_beam':
935+
self.LoadRawDataMonitor(inputPath, checkOnlyFiles)
936+
937+
#pySolo Video Input Data RAW
938+
elif datatype == 'pvg_raw' and userConfig['virtual_trikinetics']:
939+
self.LoadRawDataVideo(inputPath, checkOnlyFiles, mode='beam')
940+
elif datatype == 'pvg_raw' and not userConfig['virtual_trikinetics']:
941+
self.LoadRawDataVideo(inputPath, checkOnlyFiles, mode='distance')
931942
else:
932943

933944
dlg = wx.MessageDialog(self, 'Please, check your entries.\nSome values are missing or no rows are checked.', 'Error', wx.OK | wx.ICON_INFORMATION)

0 commit comments

Comments
 (0)