Selected
The following corpora will be included in any analysis.
{% if session.selected_corpora|length == 0 %}
Currently, no corpus is selected.
{% else %}
{% for c in session.selected_corpora %}
{{ c }}
{% endfor %}
{% endif %}
Available
Add corpora you want to analyze.
{% if corpora|length == 0 %}
Empty corpus list.
{% if filter|length != 0 %}Remove the filter "{{ filter }}"" to see all corpora.{% endif %}
{% else %}
|
|
Corpus name |
{% for c in corpora %}
|
{% if not c.selected %}
{% endif %}
|
{{ c.name }} |
{% endfor %}
{% endif %}