blob: fe22d0b1eda3438726d21be0f87beccfab13372e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% extends "layout.html" %}
{% block content %}
<br>
<h2> {{gene}} </h2>
<hr>
<h4>Synonyms</h4>
<p>The following synonyms are found in the database. You can follow the links to search individual names or all of them at once.
<br>
<b>Warning:</b> Synonyms, especially short ones, may match other genes or words that are not gene names.
<br>
<ul>
<li> <a href=/progress?type=GWAS&type=addiction&type=drug&type=brain&type=stress&type=psychiatric&type=cell&type=function&query={{synonym_list_str}}>Search all synonyms </a>
{%if case == 1%}
{%for syn in synonym_list%}
<li> <a href=/progress?type=GWAS&type=addiction&type=drug&type=brain&type=stress&type=psychiatric&type=cell&type=function&query={{syn}}>{{syn.replace("-", " ")}}</a>
{%endfor%}
</ul>
<br>
{%else%}
No synonym for {{gene}} is found.
{%endif%}
<br>
{% endblock %}
|