{% extends 'base.html' %} {% block scripts %} {{ super() }} {% if debug %} {% else %} {% endif %} {% endblock %} {% block onload %} {{ super() }} dgenies.status.init('{{ status }}', '{{ mode }}'); {% endblock %} {% block content %}
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.
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.
Note: query fasta has been filtered because it contains too small contigs.
To see which contigs has been removed from the analysis,
click here.
Your job is done.
Sorry, we did not find any match between your query and your target.
{% if error == "" %}
Your job has failed.
Please try again.
If the problem persists, please contact the support.
{% else %}
{{ error | safe }}
{% endif %}
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.Submitted
Prepared
Scheduled
Started
Merging
Done
{{ loop.index }}. | {{ subjob.id_job }} | {% 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. Note: query fasta has been filtered because it contains too small contigs. 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 %} |