Spaces:
Sleeping
Sleeping
File size: 6,642 Bytes
bebad14 d7f69ca dffaf30 bebad14 d7f69ca 1216041 d7f69ca 1216041 d7f69ca 1216041 d7f69ca 1216041 d7f69ca bebad14 d7f69ca 1216041 d7f69ca 1216041 d7f69ca 1216041 d7f69ca 8b16c9c d7f69ca bebad14 d7f69ca bebad14 f624b87 bebad14 d7f69ca bebad14 fd32c9f 1891093 fd32c9f 809b460 1891093 fd32c9f d7f69ca bebad14 28cb117 bebad14 44470f9 28cb117 fd32c9f 28cb117 d7f69ca 28cb117 d7f69ca 28cb117 8b16c9c bebad14 d7f69ca dffaf30 1216041 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
import time
import json
import gradio as gr
from gradio_molecule3d import Molecule3D
import torch
from torch_geometric.data import HeteroData
import numpy as np
from loguru import logger
from pinder.core.loader.geodata import structure2tensor
from pinder.core.loader.structure import Structure
from src.models.pinder_module import PinderLitModule
from pathlib import Path
try:
from torch_cluster import knn_graph
torch_cluster_installed = True
except ImportError:
logger.warning(
"torch-cluster is not installed!"
"Please install the appropriate library for your pytorch installation."
"See https://github.com/rusty1s/pytorch_cluster/issues/185 for background."
)
torch_cluster_installed = False
def get_props_pdb(pdb_file):
structure = Structure.read_pdb(pdb_file)
atom_mask = np.isin(getattr(structure, "atom_name"), list(["CA"]))
calpha = structure[atom_mask].copy()
props = structure2tensor(
atom_coordinates=structure.coord,
atom_types=structure.atom_name,
element_types=structure.element,
residue_coordinates=calpha.coord,
residue_types=calpha.res_name,
residue_ids=calpha.res_id,
)
return structure, props
def create_graph(pdb_1, pdb_2, k=5, device: torch.device = torch.device("cpu")):
ligand_structure, props_ligand = get_props_pdb(pdb_1)
receptor_structure, props_receptor = get_props_pdb(pdb_2)
data = HeteroData()
data["ligand"].x = props_ligand["atom_types"]
data["ligand"].pos = props_ligand["atom_coordinates"]
data["ligand", "ligand"].edge_index = knn_graph(data["ligand"].pos, k=k)
data["receptor"].x = props_receptor["atom_types"]
data["receptor"].pos = props_receptor["atom_coordinates"]
data["receptor", "receptor"].edge_index = knn_graph(data["receptor"].pos, k=k)
data = data.to(device)
return data, receptor_structure, ligand_structure
def merge_pdb_files(file1, file2, output_file):
r"""
Merges two PDB files by concatenating them without altering their contents.
Parameters:
- file1 (str): Path to the first PDB file (e.g., receptor).
- file2 (str): Path to the second PDB file (e.g., ligand).
- output_file (str): Path to the output file where the merged structure will be saved.
"""
with open(output_file, "w") as outfile:
# Copy the contents of the first file
with open(file1, "r") as f1:
lines = f1.readlines()
# Write all lines except the last 'END' line
outfile.writelines(lines[:-1])
# Copy the contents of the second file
with open(file2, "r") as f2:
outfile.write(f2.read())
print(f"Merged PDB saved to {output_file}")
return output_file
def predict(
input_seq_1, input_msa_1, input_protein_1, input_seq_2, input_msa_2, input_protein_2
):
start_time = time.time()
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
logger.info(f"Using device: {device}")
data, receptor_structure, ligand_structure = create_graph(
input_protein_1, input_protein_2, k=10, device=device
)
logger.info("Created graph data")
model = PinderLitModule.load_from_checkpoint("./checkpoints/epoch_010.ckpt")
model = model.to(device)
model.eval()
logger.info("Loaded model")
with torch.no_grad():
receptor_coords, ligand_coords = model(data)
receptor_structure.coord = receptor_coords.squeeze(0).cpu().numpy()
ligand_structure.coord = ligand_coords.squeeze(0).cpu().numpy()
receptor_pinder = Structure(
filepath=Path("./holo_receptor.pdb"), atom_array=receptor_structure
)
ligand_pinder = Structure(
filepath=Path("./holo_ligand.pdb"), atom_array=ligand_structure
)
receptor_pinder.to_pdb()
ligand_pinder.to_pdb()
out_pdb = merge_pdb_files(
"./holo_receptor.pdb", "./holo_ligand.pdb", "./output.pdb"
)
# return an output pdb file with the protein and two chains A and B.
# also return a JSON with any metrics you want to report
metrics = {"mean_plddt": 80, "binding_affinity": 2}
end_time = time.time()
run_time = end_time - start_time
return out_pdb, json.dumps(metrics), run_time
with gr.Blocks() as app:
gr.Markdown("# Template for inference")
gr.Markdown("EquiMPNN MOdel")
with gr.Row():
with gr.Column():
input_seq_1 = gr.Textbox(lines=3, label="Input Protein 1 sequence (FASTA)")
input_msa_1 = gr.File(label="Input MSA Protein 1 (A3M)")
input_protein_1 = gr.File(label="Input Protein 2 monomer (PDB)")
with gr.Column():
input_seq_2 = gr.Textbox(lines=3, label="Input Protein 2 sequence (FASTA)")
input_msa_2 = gr.File(label="Input MSA Protein 2 (A3M)")
input_protein_2 = gr.File(label="Input Protein 2 structure (PDB)")
# define any options here
# for automated inference the default options are used
# slider_option = gr.Slider(0,10, label="Slider Option")
# checkbox_option = gr.Checkbox(label="Checkbox Option")
# dropdown_option = gr.Dropdown(["Option 1", "Option 2", "Option 3"], label="Radio Option")
btn = gr.Button("Run Inference")
gr.Examples(
[
[
"GSGSPLAQQIKNIHSFIHQAKAAGRMDEVRTLQENLHQLMHEYFQQSD",
"3v1c_A.pdb",
"GSGSPLAQQIKNIHSFIHQAKAAGRMDEVRTLQENLHQLMHEYFQQSD",
"3v1c_B.pdb",
],
],
[input_seq_1, input_protein_1, input_seq_2, input_protein_2],
)
reps = [
{
"model": 0,
"style": "cartoon",
"chain": "A",
"color": "whiteCarbon",
},
{
"model": 0,
"style": "cartoon",
"chain": "B",
"color": "greenCarbon",
},
{
"model": 0,
"chain": "A",
"style": "stick",
"sidechain": True,
"color": "whiteCarbon",
},
{
"model": 0,
"chain": "B",
"style": "stick",
"sidechain": True,
"color": "greenCarbon",
},
]
# outputs
out = Molecule3D(reps=reps)
metrics = gr.JSON(label="Metrics")
run_time = gr.Textbox(label="Runtime")
btn.click(
predict,
inputs=[
input_seq_1,
input_msa_1,
input_protein_1,
input_seq_2,
input_msa_2,
input_protein_2,
],
outputs=[out, metrics, run_time],
)
app.launch() |