# HG changeset patch # User luca_milaz # Date 1720029795 0 # Node ID 4dfad25d9f6875c0ba92a497a9bf3f5c6ab0ccd1 # Parent 855564643f9169460263a1663ae53917dd978cd7 Uploaded diff -r 855564643f91 -r 4dfad25d9f68 marea_2_0/flux_sampling.py --- a/marea_2_0/flux_sampling.py Wed Jul 03 17:59:16 2024 +0000 +++ b/marea_2_0/flux_sampling.py Wed Jul 03 18:03:15 2024 +0000 @@ -99,7 +99,7 @@ def write_to_file(dataset: pd.DataFrame, dest: str)->None: if ARGS.output_format is utils.FileFormat.PICKLE: - utils.writePickle(dest, dataset) + utils.writePickle(dest, dataset) elif ARGS.output_format is utils.FileFormat.CSV: dataset.to_csv(dest, sep = '\t', index = False) @@ -218,7 +218,7 @@ global ARGS ARGS = process_args(sys.argv) - ARGS.output_folder = 'flux_sampling' + ARGS.output_folder = 'flux_sampling/' utils.logWarning( ARGS.input,