We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33daa9d commit c0867bcCopy full SHA for c0867bc
src/dlstbx/services/trigger_xchem.py
@@ -287,8 +287,12 @@ def trigger_pandda_xchem(
287
except Exception as e:
288
print(f"Problem reading .sqlite database for {subdir}: {e}")
289
290
- xchem_visit_dir = match_dir
291
- # user_settings = match_yaml["autoprocessing"]
+ if not match_dir:
+ self.log.debug(f"No directory found for {acronym}, can't continue")
292
+ return {"success": True}
293
+ else:
294
+ xchem_visit_dir = match_dir
295
+ # user_settings = match_yaml["autoprocessing"]
296
297
if xchem_visit_dir:
298
self.log.debug(
0 commit comments