diff --git a/src/xfel_calibrate/repeat.py b/src/xfel_calibrate/repeat.py index 0e5ef9674f3e6a86b92d6ab49ba1acd8b40169d5..b9b189d5fc0fb55eefdd9823a5ca2c9573383b26 100644 --- a/src/xfel_calibrate/repeat.py +++ b/src/xfel_calibrate/repeat.py @@ -110,7 +110,7 @@ def main(argv=None): "This requires the pyenv command to be available." ) ap.add_argument("--out-folder", help="Directory to put output data") - ap.add_argument("--report-path", help="Location to save PDF report") + ap.add_argument("--report-to", help="Location to save PDF report") ap.add_argument("--slurm-partition", help="Submit jobs in this Slurm partition") ap.add_argument("--slurm-mem", type=int, help="Requested node RAM in GB") ap.add_argument('--no-cluster-job', action="store_true", @@ -140,10 +140,10 @@ def main(argv=None): update_notebooks_params(working_dir, params_to_set) if args.report_path: - report_path = args.report_path + report_to = args.report_to else: # Default to saving report in output folder - report_path = str(Path(out_folder, f'xfel-calibrate-repeat-{run_uuid}')) - cal_metadata['report-path'] = report_path + report_to = str(Path(out_folder, f'xfel-calibrate-repeat-{run_uuid}')) + cal_metadata['report-path'] = f'{report_to}.pdf' cal_metadata.save() @@ -167,7 +167,7 @@ def main(argv=None): fmt_args = {'run_path': working_dir, 'out_path': out_folder, 'version': get_pycalib_version(), - 'report_to': report_path, + 'report_to': report_to, 'in_folder': parameters['in-folder'], 'request_time': start_time.strftime('%Y-%m-%dT%H:%M:%S'), 'submission_time': start_time.strftime('%Y-%m-%dT%H:%M:%S'), diff --git a/webservice/webservice.py b/webservice/webservice.py index c351a93c3280b715533d7426de8173057e1126d8..21e2b9a3b8034634c78b2072e326c91b3b339723 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -1006,7 +1006,7 @@ class ActionsServer: 'python', '-m', 'xfel_calibrate.repeat', str(mddir), '--env-cache', f'/gpfs/exfel/data/scratch/{getuser()}/calib-repeat-envs', - '--report-path', + '--report-to', f'{reports_dir}/{karabo_id}_RECORRECT_{request_time:%y%m%d_%H%M%S}' ]