Skip to content

Commit

Permalink
Fix argument passing in crest_ts_conformer_search for H abstraction
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinp0 committed Dec 22, 2024
1 parent 8fb0055 commit ba8d99f
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 @@ -1075,7 +1075,7 @@ def h_abstraction(arc_reaction: 'ARCReaction',

try:
h_abs_atoms_dict = get_h_abs_atoms(df_dmat)
crest_path = crest_ts_conformer_search(xyz_guess_crest, a, h, b, path=path)
crest_path = crest_ts_conformer_search(xyz_guess_crest, h_abs_atoms_dict["A"], h_abs_atoms_dict["H"], h_abs_atoms_dict["B"], path=path)
crest_paths.append(crest_path)
except (ValueError, KeyError) as e:
logger.error(f"Could not determine the H abstraction atoms, got:\n{e}")
Expand Down

0 comments on commit ba8d99f

Please sign in to comment.