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

fix syntax

Browse files
Files changed (1) hide show
  1. app.py +3 -4
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
- top_coexp_hits.apply(
55
- lambda row: f"https://huggingface.co/spaces/maomlab/CryptoCEN-ExpressionScatter?gene_id_1={gene_id_1}&gene_id_2={gene_id_2}",
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