aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-08-27 10:37:10 +0300
committerBonfaceKilz2024-08-29 14:51:30 +0300
commit241d38ce551292bdee5aae6a620e2637a9459587 (patch)
tree1168d1f1548eee1966367b3c3b5ceaea8e88722e /gn2/wqflask/templates
parentdd3404501ab59f14feb0ac1834806fd5699a6e90 (diff)
downloadgenenetwork2-241d38ce551292bdee5aae6a620e2637a9459587.tar.gz
Remove gn-entries from NCBI.
Will re-add this section once the API is finalised. Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn2/wqflask/templates')
-rw-r--r--gn2/wqflask/templates/genewiki.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/gn2/wqflask/templates/genewiki.html b/gn2/wqflask/templates/genewiki.html
index e2632bea..ce0eff8f 100644
--- a/gn2/wqflask/templates/genewiki.html
+++ b/gn2/wqflask/templates/genewiki.html
@@ -65,32 +65,5 @@
<u> There are no GeneNetwork entries for < b > {{ symbol }}.</b></u>
</p>
{% endif %}
- <h3>
- <strong>GeneRIF from NCBI</strong>
- <span class = "badge">{{ entries.ncbi_entries|length if entries.ncbi_entries[0] else 0 }}</span>:
- </h3>
- {% if entries.ncbi_entries[0] %}
- <ol>
- {% for entry in entries.ncbi_entries %}
- <li>
- {{ entry.entry.value }}
- ( <a href="{{ entry['generif']['value'] }}" target="_blank">{{ entry["speciesBinomialName"]["value"] }}</a> )
- {% if entry.PubMedId.value != "" %}
- {% set pmids = entry.PubMedId.value.split(",") %}
- (PubMed:
- {% for id in pmids %}
- < a href="http://rdf.ncbi.nlm.nih.gov/pubmed/{{ id }}" target="_blank" > {{ id }} < /a>
- {% endfor %}
- )
- <sup> <small><em>{{ entry.createdOn.value }}</em></small></sup>
- {% endif %}
- </li>
- {% endfor %}
- </ol>
- {% else %}
- <p class = "well">
- <u> There are no NCBI entries for < b > {{ symbol }}.</b></u>
- </p>
- {% endif %}
</div>
{% endblock %}