{% extends 'base.html' %} {% block scripts %} {{ super() }} {% if debug %} {% else %} {% endif %} {% endblock %} {% block onload %} {{ super() }} dgenies.status.init('{{ status }}', '{{ mode }}'); {% endblock %} {% block content %}

Job name: {{ id_job }}

{% if status == "started" or status == "succeed" or status == "started-batch" %}

Your job has started.
{% elif status == "starting" %}

Your job is starting...
{% elif status == "scheduled-cluster" %}

Your job has been scheduled on the cluster.
{% elif status == "submitted" or status == "waiting" %}

Your job has been submitted.
{% elif status == "getfiles" %}

Your job has been submitted. We are retrieving data...
{% elif status == "getfiles-waiting" %}

Your job has been submitted. We are retrieving data... (waiting for download...)
{% elif status == "merging" %}

Your map is done. We are preparing files for visualisation...
{% elif status == "preparing" or status == "preparing-cluster" %}

We are preparing data...
{% elif status == "prepare-scheduled" %}

We are preparing data... [scheduled]
{% elif status == "prepared"%}

Your data are ready to be processed. Your job will be scheduled soon...
{% elif status == "scheduled" %}

Your job has been shedulded. It will start soon...
{% elif status == "success" %}

Your job was completed successfully.{% if batch is none %}
Please click here to show results.

{% endif %} {% if time_elapsed is not none %}

Time elapsed: {{ time_elapsed }}

{% endif %} {% if target_filtered %}

Note: target fasta has been filtered because it contains too small contigs.
To see which contigs has been removed from the analysis, click here.

{% endif %} {% if query_filtered %}

Note: query fasta has been filtered because it contains too small contigs.
To see which contigs has been removed from the analysis, click here.

{% endif %} {% elif status == "no-match" %}

Your job is done.
Sorry, we did not find any match between your query and your target.

{% elif status == "fail" %}

{% if error == "" %} Your job has failed. Please try again.
If the problem persists, please contact the support. {% else %} {{ error | safe }} {% endif %}

{% else %}

This job does not exists!

{% endif %} {% if status not in ["success", "no-match", "fail"] %} {% if mode == "webserver" %} You will receive an email when it will be finished.
Alternatively, you can refresh this page to update status.

{% else %} This page will refresh automatically.

{% endif %} {% endif %}

Submitted

Prepared

Scheduled

Started

{% if do_align and not batch %}

Merging

{% endif %}

Done

{% if batch is not none %}

Job list

{% for subjob in batch %} {% set status = subjob.status %} {% endfor %}
{{ loop.index }}. {{ subjob.id_job }}
{% if do_align %}
{% endif %}
{% if status == "started" or status == "succeed" %}

Your job has started.

{% elif status == "starting" %}

Your job is starting...

{% elif status == "scheduled-cluster" %}

Your job has been scheduled on the cluster.

{% elif status == "submitted" or status == "waiting" %}

Your job has been submitted.

{% elif status == "getfiles" %}

Your job has been submitted. We are retrieving data...

{% elif status == "getfiles-waiting" %}

Your job has been submitted. We are retrieving data... (waiting for download...)

{% elif status == "merging" %}

Your map is done. We are preparing files for visualisation...

{% elif status == "preparing" or status == "preparing-cluster" %}

We are preparing data...

{% elif status == "prepare-scheduled" %}

We are preparing data... [scheduled]

{% elif status == "prepared"%}

Your data are ready to be processed. Your job will be scheduled soon...

{% elif status == "scheduled" %}

Your job has been shedulded. It will start soon...

{% elif status == "success" %}

Please click here to show results.

{% if time_elapsed is not none %}

Time elapsed: {{ subjob.time_elapsed }}

{% endif %} {% if target_filtered %}

Note: target fasta has been filtered because it contains too small contigs.
To see which contigs has been removed from the analysis, click here.

{% endif %} {% if query_filtered %}

Note: query fasta has been filtered because it contains too small contigs.
To see which contigs has been removed from the analysis, click here.

{% endif %} {% elif status == "no-match" %}

Sorry, we didn't find any match between your query and your target.

{% elif status == "fail" %}

{% if error == "" %} Your job has failed. Please try again. If the problem persists, please contact the support. {% else %} {{ error | safe }} {% endif %}

{% else %}

This job does not exists!

{% endif %}
{% endif %} {% endblock %}