@@ -66,8 +66,12 @@ def AddTagToChecked(self, tag_name):
66
66
"""
67
67
for row in range ( self .rowNumber () ):
68
68
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 ()
71
75
all_tags .add (tag_name )
72
76
self .table .data [row ][13 ] = list2str (all_tags , separator = ';' )
73
77
@@ -915,19 +919,26 @@ def OnAnalysisLoad(self, checkOnlyFiles = False, evt = None):
915
919
self .DAM .append (DAMslice (row [2 ], row [3 ], row [5 ], row [6 ], row [7 ], row [8 ], row [9 ], row [10 ], row [11 ], row [12 ]))
916
920
#DAMslice(mon, sch, ech, genotype, comment, smont, sd, emont, eday, year, version=pySoloVersion)
917
921
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
919
924
925
+ #TriKinetics Input Data
920
926
if datatype == 'Monitor' :
921
927
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' )
926
928
elif datatype == 'Channel' and GUI ['datatype' ] == 'Regular' :
927
929
self .LoadRawDataChannel (inputPath , checkOnlyFiles )
928
930
elif datatype == 'Channel' and GUI ['datatype' ] == 'Video' :
929
931
print ("NOT SUPPORTED" )
930
932
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' )
931
942
else :
932
943
933
944
dlg = wx .MessageDialog (self , 'Please, check your entries.\n Some values are missing or no rows are checked.' , 'Error' , wx .OK | wx .ICON_INFORMATION )
0 commit comments