Spaces:
Sleeping
Sleeping
Update inference_app.py
Browse files- inference_app.py +2 -2
inference_app.py
CHANGED
@@ -123,8 +123,8 @@ def run_docking(protein, ligand):
|
|
123 |
|
124 |
def predict (input_sequence, input_ligand,input_msa, input_protein):
|
125 |
start_time = time.time()
|
126 |
-
protonate_receptor_and_ligand(input_protein
|
127 |
-
generate_conformers(
|
128 |
cnn_score = run_docking(input_protein, input_ligand)
|
129 |
metrics = {"cnn_score": cnn_score}
|
130 |
end_time = time.time()
|
|
|
123 |
|
124 |
def predict (input_sequence, input_ligand,input_msa, input_protein):
|
125 |
start_time = time.time()
|
126 |
+
protonate_receptor_and_ligand(input_protein)
|
127 |
+
generate_conformers(input_ligand)
|
128 |
cnn_score = run_docking(input_protein, input_ligand)
|
129 |
metrics = {"cnn_score": cnn_score}
|
130 |
end_time = time.time()
|