diff --git a/xfel_calibrate/finalize.py b/xfel_calibrate/finalize.py index 695eb293b710c4150934c6738a1c07201b3f6cf8..c6c90f2c340d26f7a11b330d0149d57f102c7ba2 100644 --- a/xfel_calibrate/finalize.py +++ b/xfel_calibrate/finalize.py @@ -272,6 +272,16 @@ def make_report(run_path, tmp_path, out_path, project, author, version, if "summary" in f.lower() and f not in lead_rstfiles: direntries.insert(len(lead_rstfiles), direntries.pop(direntries.index(f))) + + # Move 'precorrection' notebook to the top if it exists + # TODO: find a better way to order the report content + elif "precorrection" in f.lower(): + # There's currently only 1 case with 'precorrection', and that + # also has a summary notebook, so we can hardcode N+1 until we + # rework this. + direntries.insert(len(lead_rstfiles) + 1, + direntries.pop(direntries.index(f))) + files_to_handle = [] for entry in direntries: if isfile("{}/{}".format(run_path, entry)):