diff --git a/MBB.py b/MBB.py index 2a440e11abcaf7efef1bbe14d49cef75ae47b693..4111208d8963b36ce2b7c224a9af4992af6142c3 100755 --- a/MBB.py +++ b/MBB.py @@ -701,6 +701,7 @@ def cmd_csv(rootdir, toolnames, print_to_console=False): df_noise_ratio.to_csv(f'{outpath}/noise.csv') df_overall_noise_ratio.to_csv(f'{outpath}/overall_noise_including_unexpected.csv') + print(f"CSV files are saved to {outpath}") def plot_helpfulness(df, outpath, toolname): SMALL_SIZE = 16 @@ -1577,6 +1578,8 @@ def cmd_plots(rootdir, toolnames, ext="pdf"): get_overview_plot(collected_data,outpath) + print(f"Plots are saved to {outpath}") + os.chdir(here) @@ -1648,8 +1651,6 @@ elif ',' in args.x: else: arg_tools = [args.x] -print(f'arg_tools: {arg_tools}') - if args.c == 'all': extract_all_todo(args.b) cmd_run(rootdir=rootdir, toolname=args.x, batchinfo=args.b)