Skip to content

Commit

Permalink
Fixing aligner
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorFWild committed Aug 15, 2023
1 parent aec6602 commit a1a9141
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions xchemalign/aligner.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,10 @@ def _perform_alignments(self, meta):
# output_path = Path(meta[Constants.CONFIG_OUTPUT_DIR])
output_path = self.version_dir

aligned_files_dir = output_path / lna_constants.ALIGNED_FILES_DIR
if not aligned_files_dir.exists():
os.mkdir(aligned_files_dir)

# Load the previous output dir if there is one
if previous_output_path:
source_fs_model = dt.FSModel.from_dir(previous_output_path)
Expand Down

0 comments on commit a1a9141

Please sign in to comment.