added more examples
Browse files
app.py
CHANGED
@@ -110,6 +110,28 @@ with gr.Blocks() as app:
|
|
110 |
["inputs/1ab1_A.primo.pdb", "PRIMO"],
|
111 |
],
|
112 |
[input_pdb, model_type],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
)
|
114 |
|
115 |
with gr.Column():
|
|
|
110 |
["inputs/1ab1_A.primo.pdb", "PRIMO"],
|
111 |
],
|
112 |
[input_pdb, model_type],
|
113 |
+
label="Monomeric coarse-grained structure",
|
114 |
+
)
|
115 |
+
gr.Examples(
|
116 |
+
[
|
117 |
+
["inputs/Q9EP54.sample.pdb", "CalphaBasedModel"],
|
118 |
+
],
|
119 |
+
[input_pdb, model_type],
|
120 |
+
label="ML(idpGAN)-generated IDP structure",
|
121 |
+
)
|
122 |
+
gr.Examples(
|
123 |
+
[
|
124 |
+
["inputs/3iyg.pdb", "CalphaBasedModel"],
|
125 |
+
],
|
126 |
+
[input_pdb, model_type],
|
127 |
+
label="Multimeric medium-resolution cryo-EM structure",
|
128 |
+
)
|
129 |
+
gr.Examples(
|
130 |
+
[
|
131 |
+
["inputs/LAF1rgg.sample.pdb", "CalphaBasedModel"],
|
132 |
+
],
|
133 |
+
[input_pdb, model_type],
|
134 |
+
label="Snapshot of COCOMO simulation of LLPS",
|
135 |
)
|
136 |
|
137 |
with gr.Column():
|