Skip to content

Commit

Permalink
Debuging collator
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorFWild committed Aug 15, 2023
1 parent dfb8f2c commit aec6602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xchemalign/aligner.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,11 @@ def __init__(self, version_dir, metadata, xtalforms, assemblies, logger=None):
self.xtal_dir = self.version_dir / Constants.META_XTAL_FILES # e.g. path/to/upload_1/crystallographic_files
self.metadata_file = self.version_dir / metadata # e.g. path/to/upload_1/meta_collator.yaml
if xtalforms:
self.xtalforms_file = xtalforms
self.xtalforms_file = Path(xtalforms)
else:
self.xtalforms_file = self.base_dir / Constants.XTALFORMS_FILENAME # e.g. path/to/xtalforms.yaml
if assemblies:
self.assemblies_file = assemblies
self.assemblies_file = Path(assemblies)
else:
self.assemblies_file = self.base_dir / Constants.ASSEMBLIES_FILENAME # e.g. path/to/assemblies.yaml
if logger:
Expand Down

0 comments on commit aec6602

Please sign in to comment.