{% extends 'admin/my_base.html' %} {% block body %} {% if form %}

Add Species

Use the panel below to add a new species

{{ form.csrf_token }}
{{form.name(class_="form-control", placeholder="Species Name") }}
{{form.code(class_="form-control", placeholder="three letter code") }}

{% for option in form.data_type %}
{% endfor %}
{{form.color(class_="form-control jscolor", placeholder="CDCDCD", value="CDCDCD") }}
{{form.highlight(class_="form-control jscolor", placeholder="DDDDDD", value="DDDDDD") }}
{{form.description(class_="form-control", placeholder="") }}

Add FASTA file containing all genes, with the gene name in the header. Note that uploading compressed (gzip) files is supported.

Help
Adds a new species to the database. Make sure the fasta file contains only the gene name in the header, and that name matches other types of data that will be added later (GO, InterPro, ...).
{% endif %} {% endblock %} {% block tail %} {{ super() }} {% endblock%}