{% extends 'base.html' %} {% block content %} {% load staticfiles %}
{% if experiment_name %}
{% if experiment_name == "all" %}
?
Plot of the eQTL profiles of the query gene in all experiments
ID {{ gene.gene_id }}
Name {{ gene.gene_name }}
Position {{ gene.chr }}:{{ gene.start }}
Description {{ gene.description }}
{% else %}
?
Plot of the eQTL profiles of the query genes for the selected experiment
{% for gene in gene_info_list %} {% endfor %}
Gene ID (count={{ gene_list|length }}) Gene Name Description
{{ gene.gene_id }} {{ gene.gene_name }} {{ gene.description }}
{% endif %} {% endif %}
{% endblock %}