{% extends 'base.html' %} {% block title %} {% if token %} BLAST Results {% else %} BLAST Search {% endif %} {% endblock %} {% block container %}

BLAST

{% if token %}
Results

Job id: {{ token }} (results will expire after one week)

Waiting for results...
{% else %}

BLAST allows you to quickly find sequences in PlaNet that are similar to an input sequence.

Enter sequence
{{ form.csrf_token }} {{form.blast_type(class_="form-control") }}
{{form.fasta(class_="form-control") }}
{% if example and example.fasta %} {% endif %}
Help
If your input sequence is an amino acids sequence, blastp is required. Nucleotide sequences can be used to search the database in combination with blastn.

  • Select the appropriate BLAST version. blastp for amino acid, blastn for nucleotide input
  • Paste the sequence in the text-box
  • Click BLAST sequence
{% endif %}
{% endblock %} {% block extrajs %} {% if token %} {% else %} {% if example and example.fasta %} {% endif %} {% endif %} {% endblock %}