Spaces:
Running
Running
fix syntax
Browse files
app.py
CHANGED
@@ -50,10 +50,9 @@ top_coexp_hits = top_coexp_hits[[
|
|
50 |
'gene_id_1', 'gene_symbol_1', 'description_1',
|
51 |
'gene_id_2', 'gene_symbol_2', 'description_2',
|
52 |
'coexp_score', 'blastp_EValue']]
|
53 |
-
top_coexp_hits["scatter_link"] =
|
54 |
-
|
55 |
-
|
56 |
-
axis = 1)
|
57 |
|
58 |
top_coexp_hits.reset_index()
|
59 |
|
|
|
50 |
'gene_id_1', 'gene_symbol_1', 'description_1',
|
51 |
'gene_id_2', 'gene_symbol_2', 'description_2',
|
52 |
'coexp_score', 'blastp_EValue']]
|
53 |
+
top_coexp_hits["scatter_link"] = top_coexp_hits.apply(
|
54 |
+
lambda row: f"https://huggingface.co/spaces/maomlab/CryptoCEN-ExpressionScatter?gene_id_1={gene_id_1}&gene_id_2={gene_id_2}",
|
55 |
+
axis = 1)
|
|
|
56 |
|
57 |
top_coexp_hits.reset_index()
|
58 |
|