Skip to content

Commit

Permalink
fix info loading
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohnson541 committed Jan 9, 2025
1 parent 218a63f commit 5933a69
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pynta/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,8 @@ def setup_active_learning_loop(self):

for ts in self.transition_states.keys():
info_path = os.path.join(self.pynta_run_directory,ts,"info.json")
with open(info_path,'r') as f:
info = json.load(f)
reactants = Molecule().from_adjacency_list(info["reactants"])
products = Molecule().from_adjacency_list(info["products"])
keep_binding_vdW_bonds_in_reactants=False
Expand Down

0 comments on commit 5933a69

Please sign in to comment.