Query{% if dataset.query != "query" %}: {{ dataset.get_label() }}{% endif %}

{% if current_user.is_authenticated %} {% endif %}
    {% for child in dataset.children %} {% include 'result-child.html' %} {% endfor %}
{% if dataset.num_rows > 0 and dataset.processors|length > 0 and current_user.is_authenticated %}

Analysis modules

{% set part = "main" %}

Start your analysis of the retrieved data by choosing one of the analysis modules below. Note that some may take a while to complete, so carefully consider which one you want to run before queueing it.

Documentation about the various modes of analysis and what to take into account when using {{ __tool_name }} data is available as well.

{% set cat = namespace(egory='') %} {% for processor in dataset.processors.values() %} {% if processor.category != cat.egory %} {% if cat.egory != '' %}{% endif %} {% set cat.egory = processor.category %}

{{ processor.category }}

    {% endif %} {% include "processor-details.html" %} {% endfor %}
{% endif %}