{% extends 'sharedTemplates/base.html' %} {% block title %}Segment library{% endblock %} {% block body %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
Information

This panel shows the contents of the immunoglobulin segment library used for annotation. The top chart displays the number of sequences available per region. The length distribution plot below it shows the variation in sequence lengths within each region. The table contains all sequences in the current library:

  • Sequence ID: Unique identifier of the segment
  • Sequence: Nucleotide sequence of the segment

Segment library

{% if library_plot %} {{ library_plot | safe }} {% endif %} {% if library_violin %} {{ library_violin | safe }} {% endif %} Show library data
{% if sequences %}
{% for seq in sequences %} {% endfor %}
Select Sequence ID Sequence
{{ seq.id }} {{ seq.sequence }}
{% endif %}
{% endblock %}