{%extends "genotypes/base.html"%} {%from "flash_messages.html" import flash_all_messages%} {%from "species/macro-display-species-card.html" import display_species_card%} {%block title%}Genotypes: List Markers{%endblock%} {%block pagetitle%}Genotypes: List Markers{%endblock%} {%block lvl4_breadcrumbs%} {%endblock%} {%block contents%} {{flash_all_messages()}} {%if markers | length > 0%}

There are a total of {{total_markers}} genotype markers for this species.

{%if start_from > 0%} Previous {%endif%}
Displaying markers {{start_from+1}} to {{start_from+count if start_from+count < total_markers else total_markers}} of {{total_markers}}
{%if start_from + count < total_markers%} Next {%endif%}
{%for marker in markers%} {%endfor%}
# Marker Name Chr Location (Mb) Source Source2
{{marker.sequence_number}} {{marker.Marker_Name}} {{marker.Chr}} {{marker.Mb}} {{marker.Source}} {{marker.Source2}}
{%else%}

This species does not currently have any genetic markers uploaded, therefore, there is nothing to display here.

add genetic markers

{%endif%} {%endblock%} {%block sidebarcontents%} {{display_species_card(species)}} {%endblock%}