We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f7ea85 commit 28ad102Copy full SHA for 28ad102
1 file changed
src/dlstbx/wrapper/pandda_xchem.py
@@ -122,7 +122,7 @@ def run(self):
122
# PanDDA2
123
124
dataset_pdir = panddas_dir / "processed_datasets" / dtag
125
- dataset_pdir.mkdir(exist_ok=True)
+ dataset_pdir.mkdir(parents=True, exist_ok=True)
126
pandda2_log = dataset_pdir / "pandda2.log"
127
128
attachments.extend([pandda2_log, ligand_cif])
@@ -151,6 +151,7 @@ def run(self):
151
# PanDDA Rhofit ligand fitting
152
153
ligand_dir = dataset_pdir / "ligand_files"
154
+ ligand_dir.mkdir(exist_ok=True)
155
156
# pandda2 not moving files into ligand_dir, fix
157
for file in compound_dir.rglob("*"):
0 commit comments