maom commited on
Commit
7f96b76
·
verified ·
1 Parent(s): f4311da

fix syntax

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ top_coexp_hits = top_coexp_hits[[
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()
 
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={row.gene_id_1}&gene_id_2={row.gene_id_2}",
55
  axis = 1)
56
 
57
  top_coexp_hits.reset_index()