maom commited on
Commit
fdce2bf
·
verified ·
1 Parent(s): b18f058

use gene_id rather than cnag_id

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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-t26_1",
16
- max_chars = 16,
17
- help = "CNAG Gene ID e.g. CNAG_04365-t26_1")
18
 
19
- top_coexp_hits = top_coexp_hits[top_coexp_hits.cnag_id_1 == gene_id]
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)