Spaces:
Sleeping
Sleeping
fix synthax
Browse files
app.py
CHANGED
@@ -110,13 +110,13 @@ with col3:
|
|
110 |
st.markdown(f"""
|
111 |
#### Gene 1:
|
112 |
* *Gene ID*: [{gene_id_1}](https://toxodb.org/toxodb/app/record/gene/{gene_id_1})
|
113 |
-
{'* *Gene
|
114 |
* *Description*: {description_1}
|
115 |
* *Top [Co-Expressed Partners](https://huggingface.co/spaces/maomlab/ToxoCEN-TopHits?gene_id={gene_id_1})*
|
116 |
|
117 |
#### Gene 2:
|
118 |
* *Gene ID*: [{gene_id_2}](https://toxodb.org/toxodb/app/record/gene/{gene_id_2})
|
119 |
-
{'* *Gene
|
120 |
* *Description*: {description_2}
|
121 |
* *Top [Co-Expressed Partners](https://huggingface.co/spaces/maomlab/ToxoCEN-TopHits?gene_id={gene_id_2})*
|
122 |
""")
|
|
|
110 |
st.markdown(f"""
|
111 |
#### Gene 1:
|
112 |
* *Gene ID*: [{gene_id_1}](https://toxodb.org/toxodb/app/record/gene/{gene_id_1})
|
113 |
+
{'* *Gene Name*:' + gene_name_1 if gene_name_1 is not None else ''}
|
114 |
* *Description*: {description_1}
|
115 |
* *Top [Co-Expressed Partners](https://huggingface.co/spaces/maomlab/ToxoCEN-TopHits?gene_id={gene_id_1})*
|
116 |
|
117 |
#### Gene 2:
|
118 |
* *Gene ID*: [{gene_id_2}](https://toxodb.org/toxodb/app/record/gene/{gene_id_2})
|
119 |
+
{'* *Gene Name*:' + gene_name_2 if gene_name_2 is not None else ''}
|
120 |
* *Description*: {description_2}
|
121 |
* *Top [Co-Expressed Partners](https://huggingface.co/spaces/maomlab/ToxoCEN-TopHits?gene_id={gene_id_2})*
|
122 |
""")
|