blob: 323f33929f90d55d15d2444bc9db8ad4d6680e8e (
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
29
30
31
32
|
{% extends "layout.html" %}
{% block content %}
<br>
<h2> {{gene}} </h2>
<hr>
<h4>Relationship with top addiction genes</h4>
<ul><li><a href=" /startGeneGene?forTopGene=+ {{gene}}" >{{gene}} vs top addiction genes </a> </ul>
<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=http://rats.pub/progress?type=GWAS&type=addiction&type=drug&type=brain&type=stress&type=psychiatric&type=function&query={{synonym_list_str}}>Search all synonyms </a>
{%if case == 1%}
{%for syn in synonym_list%}
<li> <a href=http://rats.pub/progress?type=GWAS&type=addiction&type=drug&type=brain&type=stress&type=psychiatric&type=function&query={{syn}}>{{syn.replace("-", " ")}}</a>
{%endfor%}
</ul>
<br>
{%else%}
No synonym for {{gene}} is found.
{%endif%}
<br>
{% endblock %}
|