Spaces:
Running
Running
Commit
·
f35297f
1
Parent(s):
809cdad
debug
Browse files
app.py
CHANGED
@@ -1056,26 +1056,7 @@ iface = gr.Interface(
|
|
1056 |
gr.File(
|
1057 |
label="Or upload a text file with SMILES",
|
1058 |
file_types=[".txt"]
|
1059 |
-
),
|
1060 |
-
"""
|
1061 |
-
gr.Checkbox(
|
1062 |
-
label="Show linear representation",
|
1063 |
-
value=False
|
1064 |
-
),
|
1065 |
-
gr.Checkbox(
|
1066 |
-
label="Show show segmentation details",
|
1067 |
-
value=False
|
1068 |
-
),
|
1069 |
-
gr.Checkbox(
|
1070 |
-
label="Generate 3D structure (sdf file format)",
|
1071 |
-
value=False
|
1072 |
-
),
|
1073 |
-
gr.Checkbox(
|
1074 |
-
label="Use UFF optimization (may take long)",
|
1075 |
-
value=False
|
1076 |
-
)
|
1077 |
-
"""
|
1078 |
-
],
|
1079 |
outputs=[
|
1080 |
gr.Textbox(
|
1081 |
label="Analysis Results",
|
@@ -1085,15 +1066,6 @@ iface = gr.Interface(
|
|
1085 |
label="2D Structure with Annotations",
|
1086 |
type="pil"
|
1087 |
),
|
1088 |
-
"""
|
1089 |
-
gr.Image(
|
1090 |
-
label="Linear Representation",
|
1091 |
-
type="pil"
|
1092 |
-
),
|
1093 |
-
gr.File(
|
1094 |
-
label="3D Structure Files",
|
1095 |
-
file_count="multiple"
|
1096 |
-
)"""
|
1097 |
],
|
1098 |
title="Peptide Structure Analyzer and Visualizer",
|
1099 |
description="""
|
|
|
1056 |
gr.File(
|
1057 |
label="Or upload a text file with SMILES",
|
1058 |
file_types=[".txt"]
|
1059 |
+
)],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1060 |
outputs=[
|
1061 |
gr.Textbox(
|
1062 |
label="Analysis Results",
|
|
|
1066 |
label="2D Structure with Annotations",
|
1067 |
type="pil"
|
1068 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1069 |
],
|
1070 |
title="Peptide Structure Analyzer and Visualizer",
|
1071 |
description="""
|