diff --git a/webservice/serve_overview.py b/webservice/serve_overview.py index c78e9edd4b00fa03157cbd24eff817a3df5ca6ef..590ed31b5ef31466c687de7fc6a01aa19125b26e 100644 --- a/webservice/serve_overview.py +++ b/webservice/serve_overview.py @@ -185,6 +185,7 @@ class RequestHandler(BaseHTTPRequestHandler): requested = "{} {}".format(ls[0], ls[1]) pdfs = glob.glob(f"{out_folder}/*.pdf") + pdfs += glob.glob(f"{out_folder}/*/*.pdf") pdfs = {p.split("/")[-1]: p for p in pdfs} fpdfs = [] if "xfel.pdf" in pdfs: diff --git a/webservice/webservice.py b/webservice/webservice.py index 2606a9d672b5eb2c476886432200a100f16b82e5..d0f19ce198ed8d4699c0706bcdc83dafd8eb9082 100644 --- a/webservice/webservice.py +++ b/webservice/webservice.py @@ -301,7 +301,7 @@ async def update_job_db(config): await asyncio.sleep(int(config['web-service']['job-update-interval'])) -async def copy_untouched_files(file_list, out_folder): +async def copy_untouched_files(file_list, out_folder, run): """ Copy those files whicha are not touched by calibration to outpot dir :param file_list: The list of files to copy @@ -309,7 +309,7 @@ async def copy_untouched_files(file_list, out_folder): Copying is done via an asyncio subprocess call """ - os.makedirs(out_folder, exist_ok=True) + os.makedirs("{}/r{:04d}".format(out_folder, int(run)), exist_ok=True) for f in file_list: of = f.replace("raw", "proc").replace("RAW", "CORR") cmd = ["rsync", "-av", f, of] @@ -636,8 +636,7 @@ async def server_runner(config, mode): rpath = "{}/r{:04d}/".format(in_folder, int(runnr)) out_folder = config[action]['out-folder'].format( - instrument=instrument, cycle=cycle, proposal=proposal, - run='{:04d}'.format(int(runnr)) ) + instrument=instrument, cycle=cycle, proposal=proposal) corr_file_list = set() copy_file_list = set(glob.glob("{}/*.h5".format(rpath))) detectors = {} @@ -657,7 +656,7 @@ async def server_runner(config, mode): copy_file_list = copy_file_list.difference(corr_file_list) print(detectors) asyncio.ensure_future( - copy_untouched_files(copy_file_list, out_folder)) + copy_untouched_files(copy_file_list, out_folder, runnr)) if len(detectors) == 0: logging.warn(Errors.NOTHING_TO_DO.format(rpath)) msg = "Nothing to calibrate for this run, copied raw data only" diff --git a/webservice/webservice.yaml b/webservice/webservice.yaml index 2dd9fb1c48b6cf68c49d0e699bcefdb968976795..6e8eef82a41321fb28d1246833a5c784fec3ec7b 100644 --- a/webservice/webservice.yaml +++ b/webservice/webservice.yaml @@ -24,7 +24,7 @@ metadata-client: correct: in-folder: /gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/raw - out-folder: /gpfs/exfel/d/proc/{instrument}/{cycle}/p{proposal}/r{run} + out-folder: /gpfs/exfel/d/proc/{instrument}/{cycle}/p{proposal} dark: in-folder: /gpfs/exfel/exp/{instrument}/{cycle}/p{proposal}/raw diff --git a/xfel_calibrate/calibrate.py b/xfel_calibrate/calibrate.py index c2da555db225b3d5a12e10dabd17d7dd803d0a42..8e73594a2bc088ae604d043c95bff1d3d15bfb09 100755 --- a/xfel_calibrate/calibrate.py +++ b/xfel_calibrate/calibrate.py @@ -667,6 +667,12 @@ def run(): if try_report_to_output: if "out_folder" in args: out_path = os.path.abspath(args["out_folder"]) + if "run" in args: + rr = args["run"] + if isinstance(rr, int): + out_path = "{}/r{:04d}/".format(out_path, rr) + else: + out_path = "{}/{}/".format(out_path, rr) else: print("No 'out_folder' defined as argument, outputting to '{}' instead.".format( out_path))