Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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["
|
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 |
-
"
|
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 |
})
|