FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 7e74936b authored by J.W. Smith's avatar J.W. Smith
Browse files

fix: Raise error for incorrect deposition input

parent 9599ef12
No related branches found
No related tags found
No related merge requests found
......@@ -1088,8 +1088,9 @@ def process_in_job_dep(jobPath,status,config,component):
# basic check that contents are as expected
# 132 files of NAME .txt timesteps and one summary png file
if len(glob(f"{jobPath}/{file_name}/deposition_srcs_allregions_C1_T*.txt")) != 56:
logger.warning(f"Insufficient contents of input tar file (are sources.txt and sourcelocations.txt missing?)")
msg = f"Unexpect number of deposition .txt files in input tar file. Expected 56."
logger.error(msg)
raise RuntimeError(msg)
return
def create_epi_config_string(config,jobPath,startString,endString):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment