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

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

{% if datasets %} Avaialable datasets for {{ username }}:
{% for dataset in datasets %} {% if datasets.index(dataset) == 0 %} {{ dataset }}
{% else %} {{ dataset }}
{% endif %} {% endfor %}
{% endif %} {% if not datasets %} No datasets available for {{ username }}:
Please upload a dataset to be profiled.
{% endif %}
Step 1. Set Biological Profiling Parameters
Select number of actives to be considered for each bioassay:

Note: Please enter number as an integer (i.e. 5)


Step 2. Choose how to sort in-vitro, in-vivo correlations.
Sort By:
True Positives
True Negatives
False Positives
False Negatives
Sensitivity
Specificity
CCR
Positive Predictive Value
Negative Predictive Value
L-Parameter
Coverage

{% if sim_graph %}
{{ sim_graph|safe }}
{% endif %} {% if stats %}
{{ stats|safe }}
{% endif %}
{% endblock %}