Spaces:
Sleeping
Sleeping
fix syntax
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ descriptions = []
|
|
77 |
|
78 |
for gene_id in gene_ids:
|
79 |
try:
|
80 |
-
TGME49_id = TGME49_transcript_annotations.loc[TGME49_transcript_annotations["gene_id"] ==
|
81 |
gene_name = TGME49_transcript_annotations.loc[TGME49_transcript_annotations["gene_id"] == gene_id]["gene_name"].values[0]
|
82 |
description = TGME49_transcript_annotations.loc[TGME49_transcript_annotations["gene_id"] == gene_id]["description"].values[0]
|
83 |
except:
|
|
|
77 |
|
78 |
for gene_id in gene_ids:
|
79 |
try:
|
80 |
+
TGME49_id = TGME49_transcript_annotations.loc[TGME49_transcript_annotations["gene_id"] == gene_id]["TGME49_id"].values[0]
|
81 |
gene_name = TGME49_transcript_annotations.loc[TGME49_transcript_annotations["gene_id"] == gene_id]["gene_name"].values[0]
|
82 |
description = TGME49_transcript_annotations.loc[TGME49_transcript_annotations["gene_id"] == gene_id]["description"].values[0]
|
83 |
except:
|