Spaces:
Sleeping
Sleeping
Commit
·
82fd0af
1
Parent(s):
0fe2525
Update code/alphafold_featureVector.py
Browse files
code/alphafold_featureVector.py
CHANGED
|
@@ -465,5 +465,5 @@ def alphafold(input_set, mode, impute):
|
|
| 465 |
print("Time passed: {:0>2}:{:0>2}:{:05.2f}".format(int(hours), int(minutes), seconds))
|
| 466 |
|
| 467 |
return final_data
|
| 468 |
-
except
|
| 469 |
st.write('No Alphafold model for this protein is found in the database.')
|
|
|
|
| 465 |
print("Time passed: {:0>2}:{:0>2}:{:05.2f}".format(int(hours), int(minutes), seconds))
|
| 466 |
|
| 467 |
return final_data
|
| 468 |
+
except u.EntryNotFoundError:
|
| 469 |
st.write('No Alphafold model for this protein is found in the database.')
|