maom commited on
Commit
c224b96
·
verified ·
1 Parent(s): f2018a5

fix syntax

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ else:
15
  input_gene_ids = "TGME49_231630,TGME49_230210"
16
 
17
  # use "\n" as the separator so it shows correctly in the text area
18
- input_gene_ids = gene_ids.replace(",", "\n")
19
 
20
 
21
 
 
15
  input_gene_ids = "TGME49_231630,TGME49_230210"
16
 
17
  # use "\n" as the separator so it shows correctly in the text area
18
+ input_gene_ids = input_gene_ids.replace(",", "\n")
19
 
20
 
21