armheb commited on
Commit
9478003
1 Parent(s): 3f1302c

Add bug fix

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(S)):
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 https://www.biorxiv.org/content/10.1101/2021.09.23.461475v4"
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