Skip to content

Commit

Permalink
Fix parameter passing
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinp0 committed Dec 22, 2024
1 parent ed4b9c7 commit 22ffb04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/job/adapters/ts/heuristics.py
Original file line number Diff line number Diff line change
Expand Up @@ -1109,7 +1109,7 @@ def crest_ts_conformer_search(xyz_guess: dict, a_atom: int, h_atom: int, b_atom:
# Write coords to coords.ref file
symbols = xyz_guess['symbols']

converted_coords = str_to_str(xyz_str=xyz_guess['coords'], reverse_atoms=True, convert_to="bohr")
converted_coords = str_to_str(xyz_str=xyz_to_str(xyz_guess), reverse_atoms=True, convert_to="bohr")
coords_ref_content = f"$coord\n{converted_coords}\n$end\n"
coords_ref_path = os.path.join(path, 'coords.ref')

Expand Down

0 comments on commit 22ffb04

Please sign in to comment.