Spaces:
Sleeping
Sleeping
pick columns
Browse files
app.py
CHANGED
|
@@ -16,7 +16,11 @@ gene_id = st.text_input(
|
|
| 16 |
max_chars = 10,
|
| 17 |
help = "CNAG Gene ID e.g. CNAG_04365")
|
| 18 |
|
| 19 |
-
top_coexp_hits = top_coexp_hits[
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
st.table(top_coexp_hits)
|
|
|
|
| 16 |
max_chars = 10,
|
| 17 |
help = "CNAG Gene ID e.g. CNAG_04365")
|
| 18 |
|
| 19 |
+
top_coexp_hits = top_coexp_hits[
|
| 20 |
+
top_coexp_hits.gene_id_1 == gene_id,
|
| 21 |
+
['gene_id_1', 'gene_symbol_1', 'description_1',
|
| 22 |
+
'gene_id_2', 'gene_symbol_2', 'description_2',
|
| 23 |
+
'coexp_score', 'blastp_EValue']]
|
| 24 |
|
| 25 |
|
| 26 |
st.table(top_coexp_hits)
|