Spaces:
Running
Running
Commit
·
a0cad87
1
Parent(s):
0bbb5ea
add more functions
Browse files
app.py
CHANGED
|
@@ -473,20 +473,12 @@ iface = gr.Interface(
|
|
| 473 |
4. Creates 2D structure visualization with residue annotations
|
| 474 |
5. Optional linear representation
|
| 475 |
|
| 476 |
-
Input: Either enter a SMILES string directly or upload a text file
|
|
|
|
|
|
|
|
|
|
|
|
|
| 477 |
""",
|
| 478 |
-
examples=[
|
| 479 |
-
[
|
| 480 |
-
"CC(C)C[C@@H]1NC(=O)[C@@H]2CCCN2C(=O)[C@@H](CC(C)C)NC(=O)[C@@H](CC(C)C)N(C)C(=O)[C@H](C)NC(=O)[C@H](Cc2ccccc2)NC1=O",
|
| 481 |
-
"", # Empty string for file input
|
| 482 |
-
True
|
| 483 |
-
],
|
| 484 |
-
[
|
| 485 |
-
"CC(C)C[C@@H]1OC(=O)[C@H](C)NC(=O)[C@H](C(C)C)OC(=O)[C@H](C)N(C)C(=O)[C@@H](C)NC(=O)[C@@H](Cc2ccccc2)N(C)C1=O",
|
| 486 |
-
"", # Empty string for file input
|
| 487 |
-
True
|
| 488 |
-
]
|
| 489 |
-
],
|
| 490 |
flagging_mode="never"
|
| 491 |
)
|
| 492 |
|
|
|
|
| 473 |
4. Creates 2D structure visualization with residue annotations
|
| 474 |
5. Optional linear representation
|
| 475 |
|
| 476 |
+
Input: Either enter a SMILES string directly or upload a text file containing SMILES strings
|
| 477 |
+
|
| 478 |
+
Example SMILES strings:
|
| 479 |
+
1. CC(C)C[C@@H]1NC(=O)[C@@H]2CCCN2C(=O)[C@@H](CC(C)C)NC(=O)[C@@H](CC(C)C)N(C)C(=O)[C@H](C)NC(=O)[C@H](Cc2ccccc2)NC1=O
|
| 480 |
+
2. CC(C)C[C@@H]1OC(=O)[C@H](C)NC(=O)[C@H](C(C)C)OC(=O)[C@H](C)N(C)C(=O)[C@@H](C)NC(=O)[C@@H](Cc2ccccc2)N(C)C1=O
|
| 481 |
""",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 482 |
flagging_mode="never"
|
| 483 |
)
|
| 484 |
|