Commit
·
eba44c7
1
Parent(s):
1de0dc0
docs: chains should be R/L
Browse files- inference_app.py +1 -1
inference_app.py
CHANGED
@@ -21,7 +21,7 @@ def predict(
|
|
21 |
) -> tuple[str, float]:
|
22 |
start_time = time.time()
|
23 |
# Do inference here
|
24 |
-
# return an output pdb file with the protein and two chains
|
25 |
receptor = atom_array_from_pdb_file(receptor_pdb, extra_fields=["b_factor"])
|
26 |
ligand = atom_array_from_pdb_file(ligand_pdb, extra_fields=["b_factor"])
|
27 |
receptor = normalize_orientation(receptor)
|
|
|
21 |
) -> tuple[str, float]:
|
22 |
start_time = time.time()
|
23 |
# Do inference here
|
24 |
+
# return an output pdb file with the protein and two chains R and L.
|
25 |
receptor = atom_array_from_pdb_file(receptor_pdb, extra_fields=["b_factor"])
|
26 |
ligand = atom_array_from_pdb_file(ligand_pdb, extra_fields=["b_factor"])
|
27 |
receptor = normalize_orientation(receptor)
|