Jayesh13 commited on
Commit
11b960e
·
verified ·
1 Parent(s): eb5a8ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -93,7 +93,7 @@ if uploaded_file is not None:
93
  results = []
94
 
95
  for index, row in df.iterrows():
96
- protein_id = row["Protein_ID"]
97
  protein_name = row["Protein_Name"]
98
  sequence = row["Protein_Sequence"] # Assuming the protein sequence is in a column named 'Protein_Sequence'
99
 
@@ -113,7 +113,7 @@ if uploaded_file is not None:
113
 
114
  # Add results to display
115
  results.append({
116
- "Protein ID": protein_id,
117
  "Protein Name": protein_name,
118
  "Repeats": repeats
119
  })
 
93
  results = []
94
 
95
  for index, row in df.iterrows():
96
+ protein_id = row["Entry ID"]
97
  protein_name = row["Protein_Name"]
98
  sequence = row["Protein_Sequence"] # Assuming the protein sequence is in a column named 'Protein_Sequence'
99
 
 
113
 
114
  # Add results to display
115
  results.append({
116
+ "Entry ID": protein_id,
117
  "Protein Name": protein_name,
118
  "Repeats": repeats
119
  })