Skip to content

Commit

Permalink
Fix relaxed protein scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
amorehead committed Aug 15, 2024
1 parent 8468f6e commit d4252fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion posebench/analysis/inference_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,9 @@ def main(cfg: DictConfig):

# differentiate relaxed and unrelaxed protein pose results
if "relaxed" in config and cfg.relax_protein:
bust_results_filepath = bust_results_filepath.replace(".csv", "_protein_relaxed.csv")
bust_results_filepath = Path(
str(bust_results_filepath).replace(".csv", "_protein_relaxed.csv")
)

os.makedirs(bust_results_filepath.parent, exist_ok=True)

Expand Down

0 comments on commit d4252fd

Please sign in to comment.