Skip to content

Commit

Permalink
Fix bug in regions writer
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed Jul 10, 2023
1 parent f7c33c4 commit fce490e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mirar/processors/candidates/utils/regions_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _apply_to_candidates(
output_dir=self.output_dir,
)

regions_path.mkdir(parents=True, exist_ok=True)
regions_path.parent.mkdir(parents=True, exist_ok=True)

if regions_path not in started_regions_paths:
logger.debug(f"Writing regions path to {regions_path}")
Expand Down

0 comments on commit fce490e

Please sign in to comment.