OleinikovasV commited on
Commit
244f1ce
·
verified ·
1 Parent(s): d35b73e

Update inference_app.py

Browse files
Files changed (1) hide show
  1. inference_app.py +1 -1
inference_app.py CHANGED
@@ -129,7 +129,7 @@ def predict(input_sequence, input_ligand, input_msa, input_protein):
129
  # get mindist to protein
130
  min_dist = np.min(np.linalg.norm(mol_coords - new_coord, axis=1))
131
  # decoy coord
132
- decoy_coord = optimize_decoy_coordinate(mol_coords)
133
  decoy_min_dist = np.min(np.linalg.norm(mol_coords - decoy_coord, axis=1))
134
 
135
  # save protein
 
129
  # get mindist to protein
130
  min_dist = np.min(np.linalg.norm(mol_coords - new_coord, axis=1))
131
  # decoy coord
132
+ decoy_coord, _ = optimize_decoy_coordinate(mol_coords)
133
  decoy_min_dist = np.min(np.linalg.norm(mol_coords - decoy_coord, axis=1))
134
 
135
  # save protein