{% extends "base_entry.html" %} {% load staticfiles %} {% block title %}Local synteny of {{ entry.omaid }} across genomes{% endblock %} {% block meta_description %}Explore the synthenic genes around {{ entry.omaid }} across its orthologs. Find out about highly conserved regions, rearangements, segmental duplications and other evolutionary events in this region{% endblock %} {% block css_hook %} {% endblock css_hook %} {% block js_hook %} {% endblock js_hook %} {% block contentTab %}
| {% for position in positions %} | {{ position }} | {% endfor %}|
|---|---|---|
| {{ md.species }} | {% for index, geneinfo in md.genes.items %} {% for infotype, genetype in geneinfo.items %} {% if genetype == 'blank' %}{% elif infotype == 'genenumber' %} | {% if geneinfo.dir == -1 %} {% endif %} {{ genetype }} {% if geneinfo.dir == 1 %} {% endif %} | {% endif %} {% endfor %} {% endfor %}
| {{ ortholog_info.o_species }} | {% for gene, geneinfo in ortholog_info.o_genes.items %} {% for infotype, genetype in geneinfo.items %} {% if genetype == 'blank' %}{% elif infotype == 'genenumber' %} | {% if md.entry_dir == ortholog_info.row_dir and geneinfo.dir == -1 %} {% elif md.entry_dir != ortholog_info.row_dir and geneinfo.dir == 1 %} {% endif %} {{ genetype }} {% if md.entry_dir == ortholog_info.row_dir and geneinfo.dir == 1 %} {% elif md.entry_dir != ortholog_info.row_dir and geneinfo.dir == -1 %} {% endif %} | {% endif %} {% endfor %} {% endfor %}