Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianMichelsen committed May 4, 2022
2 parents f105fcf + 9b2815d commit cc18f9d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/metaDMG/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ def make_configs(

paths = ["names", "nodes", "acc2tax", "output_dir", "config_file"]
for path in paths:
d[path] = Path(d[path])
if d[path]:
d[path] = Path(d[path])
for key, val in d["samples"].items():
d["samples"][key] = Path(val)

Expand Down

0 comments on commit cc18f9d

Please sign in to comment.