Spaces:
Sleeping
Sleeping
Fix typo
Browse files- hexviz/view.py +1 -1
hexviz/view.py
CHANGED
@@ -85,7 +85,7 @@ def select_protein(pdb_code, uploaded_file, input_sequence):
|
|
85 |
elif input_sequence:
|
86 |
pdb_str = get_pdb_from_seq(str(input_sequence))
|
87 |
if not pdb_str:
|
88 |
-
st.
|
89 |
return None, None, None
|
90 |
else:
|
91 |
structure = parser.get_structure("ESMFold", StringIO(pdb_str))
|
|
|
85 |
elif input_sequence:
|
86 |
pdb_str = get_pdb_from_seq(str(input_sequence))
|
87 |
if not pdb_str:
|
88 |
+
st.error("ESMfold error, unable to fold sequence")
|
89 |
return None, None, None
|
90 |
else:
|
91 |
structure = parser.get_structure("ESMFold", StringIO(pdb_str))
|