mohamed20003 commited on
Commit
e0d93b8
ยท
verified ยท
1 Parent(s): aa6f8b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -8
app.py CHANGED
@@ -107,15 +107,12 @@ with gr.Blocks(css=css) as demo:
107
  gr.Markdown("<h1>๐Ÿ”ฌ Drug-like Molecule Generation from PDB using ChemGPT</h1>")
108
  gr.Markdown("๐Ÿงช Upload a PDB file containing mutations in the KRAS protein. The system will generate suitable SMILES drug candidates.")
109
 
110
- .")
111
-
112
  with gr.Row():
113
- pdb_input = gr.File(label="๐Ÿ“ ุงุฑูุน ู…ู„ู PDB")
114
- run_btn = gr.Button("๐Ÿš€ ุชูˆู„ูŠุฏ ุงู„ู…ุฑูƒุจุงุช")
115
-
116
- status = gr.Textbox(label="๐Ÿ“ข ุงู„ุญุงู„ุฉ")
117
- view3d = gr.HTML(label="๐Ÿงฌ ุนุฑุถ ุซู„ุงุซูŠ ุงู„ุฃุจุนุงุฏ")
118
- file_output = gr.File(label="๐Ÿ“„ ุชุญู…ูŠู„ ู…ู„ู SMILES")
119
 
120
  run_btn.click(
121
  fn=generate_from_pdb,
 
107
  gr.Markdown("<h1>๐Ÿ”ฌ Drug-like Molecule Generation from PDB using ChemGPT</h1>")
108
  gr.Markdown("๐Ÿงช Upload a PDB file containing mutations in the KRAS protein. The system will generate suitable SMILES drug candidates.")
109
 
 
 
110
  with gr.Row():
111
+ pdb_input = gr.File(label="๐Ÿ“ Upload PDB File")
112
+ run_btn = gr.Button("๐Ÿš€ Generate Compounds")
113
+ status = gr.Textbox(label="๐Ÿ“ข Status")
114
+ view3d = gr.HTML(label="๐Ÿงฌ 3D Structure Viewer")
115
+ file_output = gr.File(label="๐Ÿ“„ Download SMILES File")
 
116
 
117
  run_btn.click(
118
  fn=generate_from_pdb,