maom commited on
Commit
f1725de
·
verified ·
1 Parent(s): 31a39f0

fstring substitution

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -77,12 +77,12 @@ chart_data = chart_data.merge(
77
  right = estimated_expression_meta,
78
  on = "run_accession")
79
 
80
- st.markdown("""
81
- ### Gene 1:
82
  * gene_id: [{gene_id_1}](https://fungidb.org/fungidb/app/record/gene/{gene_id_1})
83
  * description: {description_1}
84
 
85
- ### Gene 2:
86
  * gene_id: [{gene_id_2}](https://fungidb.org/fungidb/app/record/gene/{gene_id_2})
87
  * description: {description_2}
88
  """)
 
77
  right = estimated_expression_meta,
78
  on = "run_accession")
79
 
80
+ st.markdown(f"""
81
+ #### Gene 1:
82
  * gene_id: [{gene_id_1}](https://fungidb.org/fungidb/app/record/gene/{gene_id_1})
83
  * description: {description_1}
84
 
85
+ #### Gene 2:
86
  * gene_id: [{gene_id_2}](https://fungidb.org/fungidb/app/record/gene/{gene_id_2})
87
  * description: {description_2}
88
  """)