Mercurial > repos > bimib > marea_2_0
changeset 167:4dfad25d9f68 draft
Uploaded
author | luca_milaz |
---|---|
date | Wed, 03 Jul 2024 18:03:15 +0000 |
parents | 855564643f91 |
children | 552e5f44edaa |
files | marea_2_0/flux_sampling.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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,