{% extends "template.html" %} {% block content %}
{% if error %}

Error: {{ error }} {% endif %}

Step 1. Select Profile.
{% if profiles %} {% for profile in profiles %} {% if profiles.index(profile) == 0 %} {{ profile }}
{% else %} {{ profile }}
{% endif %} {% endfor %} {% endif %} {% if not profiles %} Please profile a dataset. {% endif %}

Step 2. Set Biological Nearest Neighbor Parameters.
Minimum biological similarity for nearest neighbor calculation:

Please enter a confidence:


Step 3. Biological Activity Predictor.
Choose test set to predict:
{% if testsets %} Avaialable datasets for {{ username }}:
{% for testset in testsets %} {% if testsets.index(testset) == 0 %} {{ testset }}
{% else %} {{ testset }}
{% endif %} {% endfor %} {% endif %} {% if not testsets %} No available test sets. Please upload. {% endif %}
Number of nearest neighbors to be used for BioNN activity averages:

Step 5. Choose output format and submit

{% if sim_graph %}
{{ sim_graph|safe }}
{% endif %} {% if cids %}
{% if cids %}
{% for i in range(0, len_cids) %} {% if NN_bool[i] %} {% else %} {% endif %} {% endfor %}
CID Experimental CIIP BioNN Activity
{{ cids[i] }}{{ cids[i] }}{{ acts[i] }} {{ preds[i] }}
{% endif %}
{% endif %}
{% endblock %}