Spaces:
Sleeping
Sleeping
Update inference_app.py
Browse files- 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
|