-
Notifications
You must be signed in to change notification settings - Fork 10
/
gorefs.html
33 lines (29 loc) · 1.04 KB
/
gorefs.html
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
33
---
layout: default
---
<div class="container">
<h1>GO REFs</h1>
<p>This is a collection of references used by the GO Consortium. GO References (GO_REFs) are non-PMID references used by the GO Consortium and usually describe the method or project used to generate a specific set of annotations.</p>
{% if jekyll.environment == "development" %}
{% unless site.data.gorefs %}
<div class="alert alert-warning">
<strong>Warning!</strong> No GO_REFs found. Did you run <code>make _data/gorefs.yml</code>?
</div>
{% endunless %}
{% endif %}
<ul>
{% for goref in site.data.gorefs %}
{% unless goref.is_obsolete %}
{% include goref_toc_list_item.html goref=goref %}
{% endunless %}
{% endfor %}
</ul>
<h2>Obsolete GO REFs</h2>
<ul>
{% for goref in site.data.gorefs %}
{% if goref.is_obsolete %}
{% include goref_toc_list_item.html goref=goref %}
{% endif %}
{% endfor %}
</ul>
</div>