Update app.py
Browse files
app.py
CHANGED
|
@@ -92,7 +92,7 @@ def compute_contact_order(pdb_file, sequence_length):
|
|
| 92 |
structure_length = len(ca_coords)
|
| 93 |
|
| 94 |
if structure_length != sequence_length:
|
| 95 |
-
warning = f"
|
| 96 |
else:
|
| 97 |
warning = None
|
| 98 |
|
|
|
|
| 92 |
structure_length = len(ca_coords)
|
| 93 |
|
| 94 |
if structure_length != sequence_length:
|
| 95 |
+
warning = f"Sequence length = {sequence_length}, structure CA count = {structure_length}. Mismatch detected."
|
| 96 |
else:
|
| 97 |
warning = None
|
| 98 |
|