@@ -365,22 +365,22 @@ def showStat(self):
365365 from harm_plot import generate_csv , harm_plot
366366 import pandas as pd
367367
368- print ('\n \n Computing statistics\n \n ' )
368+ print ('\n \n Computing statistics: ' )
369369
370- print (f'{ self .reference } site: ' )
370+ print (f'{ self .reference } site' )
371371 ref_mean = analyzeStat (self .ref_csv , self .templatePath )
372372 generate_csv (self .ref_csv , ref_mean , pjoin (self .templatePath , self .reference ), self .bshell_b )
373373
374- print (f'{ self .target } site before harmonization: ' )
374+ print (f'{ self .target } site before harmonization' )
375375 target_mean_before = analyzeStat (self .tar_unproc_csv , self .templatePath )
376376 generate_csv (self .tar_unproc_csv , target_mean_before , pjoin (self .templatePath , self .target )+ '_before' , self .bshell_b )
377377
378- print (f'{ self .target } site after harmonization: ' )
378+ print (f'{ self .target } site after harmonization' )
379379 target_mean_after = analyzeStat (self .harm_csv , self .templatePath )
380380 generate_csv (self .harm_csv , target_mean_after , pjoin (self .templatePath , self .target )+ '_after' , self .bshell_b )
381381
382382
383- print ('\n \n Printing statistics\n \n ' )
383+ print ('\n \n Printing statistics: ' )
384384 # save statistics for future
385385 statFile = pjoin (self .templatePath , 'meanFAstat.csv' )
386386 if isfile (statFile ):
0 commit comments