Newer
Older
---
title: Current work
---
<h1>{{ page.title }}</h1>
The current work is organised either in <a href="#gotosig">special interest groups</a>, which are spontaneous activities among the group or in <a href="#gotoprojects">projects</a>, which are funded by third-parties and have their own processes.
<h1 id="gotosig">Special interest groups</h1>
Following the <a href="https://rd-alliance.org/groups/interest-groups">RDA model</a>, WG3 work is organised in Special Interest Groups or SIGs. A SIG is a group of people from different PaN facilities, working together on a particular topic of common interest. The SIGs have defined targets and report progress back to the WG3 meetings.
The current list of SIGs is the following:
<ul>
{% for sig in site.data.sigs %}
{% assign uniqid = sig.name | split: " " | join: "-" %}
<li><a href="#{{ uniqid }}">{{ sig.name }}</a></li>
{% endfor %}
</ul>
{% for sig in site.data.sigs %}
{% assign uniqid = sig.name | split: " " | join: "-" %}
<h2 id="{{uniqid}}">{{ sig.name }} {% if sig.status %}<span class="sticker" style="float: right">{{ sig.status }}</span>{% endif %}</h2>
{% if sig.chairs %}<h3>Chair(s): {{ sig.chairs }}</h3>{% endif %}
<p>
{% if sig.mandate %}<strong>Mandate:</strong> {{ sig.mandate }}<br>{% endif %}
{% if sig.mail %}<strong>Mailing list:</strong> <a href="mailto:{{sig.mail}}">{{ sig.mail }}</a><br>{% endif %}
</p>
{% endfor %}
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<h1 id="gotoprojects">Current projects</h1>
The projects in which members of our group are or have been involved are listed in the following table:
<table>
<tr>
<th>Project</th>
<th>Teaser</th>
<th>Partners</th>
<th>Outcomes</th>
</tr>
{% for project in site.data.projects %}
<tr>
<td>
<a href="https://doi.org/{{ project.doi }}">{{ project.acronym }}</a> ({{ project.startDate | date: "%Y" }} - {{ project.endDate | date: "%Y" }})
</td>
<td class="justify">{{ project.teaser }}</td>
<td class="nowrap">
<ul>
{% assign participants = site.data.facilities | where:"projects",project.acronym %}
{% for participant in participants %}
<li>{{ participant.short-name }}</li>
{% endfor %}
</ul>
</td>
<td class="nowrap">
<ul>
{% assign p-outcomes = site.data.outcomes | where:"project",project.acronym %}
{% for p-outcome in p-outcomes %}
<li><a href="{{ '../outcomes.html#' | append: p-outcome.short-name | relative-url }}">{{ p-outcome.short-name }}</a></li>
{% endfor %}
</ul>
</td>
</tr>
{% endfor %}
</table>