Spaces:
Runtime error
Runtime error
Add bug fix
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ def Predict_profile(sequence, header = header,rem=rem,Hash1 = Hash1):
|
|
65 |
|
66 |
a = (len(Hash1),len(sequence))
|
67 |
pred_Profile=np.zeros(a)
|
68 |
-
for i in range(len(
|
69 |
if i not in rem:
|
70 |
T=np.copy(list(sequence))
|
71 |
T=" ".join(T)
|
@@ -93,7 +93,7 @@ def Predict_profile(sequence, header = header,rem=rem,Hash1 = Hash1):
|
|
93 |
return(pred_Profile)
|
94 |
|
95 |
|
96 |
-
title="Protein sequence profile prediction using ProtAlbert transformer
|
97 |
|
98 |
|
99 |
|
|
|
65 |
|
66 |
a = (len(Hash1),len(sequence))
|
67 |
pred_Profile=np.zeros(a)
|
68 |
+
for i in range(len(sequence)):
|
69 |
if i not in rem:
|
70 |
T=np.copy(list(sequence))
|
71 |
T=" ".join(T)
|
|
|
93 |
return(pred_Profile)
|
94 |
|
95 |
|
96 |
+
title="Protein sequence profile prediction using ProtAlbert transformer"
|
97 |
|
98 |
|
99 |
|