CYF200127 commited on
Commit
da428e0
·
verified ·
1 Parent(s): 7361fe3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -178,8 +178,8 @@ with gr.Blocks() as demo:
178
  reaction = rdChemReactions.ReactionFromSmarts(smiles)
179
  if reaction:
180
  img = Draw.ReactionToImage(reaction)
181
- components.append(gr.Textbox(value=smiles,label= f"Reaction {i + 1} SMILES", show_copy_button=True, interactive=False))
182
- components.append(gr.Image(value=img,label= f"Reaction {i + 1} RDKit Image"))
183
  return components # 返回包含所有 SMILES Textbox 组件的列表
184
 
185
  download_json = gr.File(label="Download JSON File",)
 
178
  reaction = rdChemReactions.ReactionFromSmarts(smiles)
179
  if reaction:
180
  img = Draw.ReactionToImage(reaction)
181
+ components.append(gr.Textbox(value=smiles,label= f"SMILES of Reaction {i + 1} ", show_copy_button=True, interactive=False))
182
+ components.append(gr.Image(value=img,label= f"RDKit Image of Reaction {i + 1} "))
183
  return components # 返回包含所有 SMILES Textbox 组件的列表
184
 
185
  download_json = gr.File(label="Download JSON File",)