@@ -38,6 +38,11 @@ def init_servers():
3838 except Exception as e :
3939 print (f'An error occured trying to connect to RDSS: { e } ' )
4040 sys .exit (1 )
41+
42+ print ("""
43+ Server check passed -> checking rdss files
44+ *----------------------------*
45+ """ )
4146 return None
4247
4348def check_files ():
@@ -47,6 +52,7 @@ def check_files():
4752
4853 if len (rdss_files ) == 0 :
4954 print ("error: RDSS files were not grabbed - find out why" )
55+ sys .exit (1 )
5056
5157 need = compare (rdss_files , TXT )
5258
@@ -62,7 +68,10 @@ def create_comparable_dataframe(need):
6268 from src .match import parse_files
6369
6470 if type (need ) != list :
65- print ("need is not a list... you need to figure out why" )
71+ print ("""
72+ need is not a list... you need to figure out why
73+ *----------------------------*
74+ """ )
6675 exit ()
6776
6877 lab_id_file = parse_files (need )
@@ -81,7 +90,10 @@ def create_comparable_dataframe(need):
8190 print (error )
8291 sys .exit (1 )
8392 else :
84- print ("All rows are valid" )
93+ print ("""
94+ All rows are valid
95+ *----------------------------*
96+ """ )
8597
8698 return lab_id_file
8799
@@ -111,6 +123,7 @@ def GGIR(outs):
111123 #this is where we run GGIR using the GGIR function in matched
112124 from src .match import GGIR
113125 GGIR (outs )
126+ print ("GGIR completed -> moving to validation" )
114127 return None
115128
116129
@@ -131,7 +144,7 @@ def main():
131144
132145 return None
133146
134- if __name__ == 'main ' :
147+ if __name__ == '__main__ ' :
135148 main ()
136149
137150
0 commit comments