Spaces:
Sleeping
Sleeping
use gene_id rather than cnag_id
Browse files
app.py
CHANGED
@@ -12,11 +12,11 @@ top_coexp_hits = top_coexp_hits["top_coexp_hits"].to_pandas()
|
|
12 |
|
13 |
gene_id = st.text_input(
|
14 |
label = "Gene 1",
|
15 |
-
value = "CNAG_04365
|
16 |
-
max_chars =
|
17 |
-
help = "CNAG Gene ID e.g. CNAG_04365
|
18 |
|
19 |
-
top_coexp_hits = top_coexp_hits[top_coexp_hits.
|
20 |
|
21 |
|
22 |
st.table(top_coexp_hits)
|
|
|
12 |
|
13 |
gene_id = st.text_input(
|
14 |
label = "Gene 1",
|
15 |
+
value = "CNAG_04365",
|
16 |
+
max_chars = 10,
|
17 |
+
help = "CNAG Gene ID e.g. CNAG_04365")
|
18 |
|
19 |
+
top_coexp_hits = top_coexp_hits[top_coexp_hits.gene_id_1 == gene_id]
|
20 |
|
21 |
|
22 |
st.table(top_coexp_hits)
|