Skip to content

Commit 16ee424

Browse files
Merge pull request #41 from pnlbwh/aesthatics
Adjusted aesthetics of concluding messages
2 parents f413fa6 + 852dfd5 commit 16ee424

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

lib/harmonization.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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\nComputing statistics\n\n')
368+
print('\n\nComputing 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\nPrinting statistics\n\n')
383+
print('\n\nPrinting statistics:')
384384
# save statistics for future
385385
statFile= pjoin(self.templatePath, 'meanFAstat.csv')
386386
if isfile(statFile):

0 commit comments

Comments
 (0)