Update app.py
Browse files
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}
|
182 |
-
components.append(gr.Image(value=img,label= f"Reaction {i + 1}
|
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",)
|