{% extends "base.html" %} {% block content %}
FASTA files: {{ summary.fasta_file_count }}
Metadata files: {{ summary.metadata_file_count }}
Total sequences: {{ summary.total_sequences }}
Filters: {{ summary.filters }}
Filtered: {{ summary.filtered_count }}
Unique locations: {{ summary.locations }}
Date range: {{ summary.date_range }}
{{ fasta_summary }}
{% for row in records_summary %} {% set file_block = (seq_details_by_file | selectattr('file', 'equalto', row.file) | list | first) %}| File | Seqs | Length (min) | Length (max) | Length (mean) | N (min) | N (max) | N (mean) |
|---|---|---|---|---|---|---|---|
| {{ row.file }} | {{ row.sequences }} | {{ row.len_min }} | {{ row.len_max }} | {{ row.len_mean }} | {{ row.n_min }} | {{ row.n_max }} | {{ row.n_mean }} |
| ID | Length | N content | Status |
|---|---|---|---|
| {{ detail.id }} | {{ detail.length }} | {{ detail.n_content | round(4) }} | {{ 'filtered' if is_filtered else 'kept' }} |
{{ metadata_summary }}
{% if metadata_tables %} {% for table in metadata_tables %} {% endfor %} {% else %}No metadata tables available.
{% endif %}Distribution of sequence lengths across all input FASTA files. If a minimum length threshold is specified, it will be shown in the plot.
{{ length_plot_html | safe }} {% else %}No length data available for plotting.
{% endif %}Unique locations: {{ summary.locations }}
Date range: {{ summary.date_range }}
{% if dataset_plot_html %}Date distribution by location.
{{ dataset_plot_html | safe }} {% else %}No date/location data available for plotting. To include this information, ensure your metadata files contain valid date and location fields and specify the date and location columns when running raccoon.
{% endif %}The following sequences failed the length or N-content filters and will not be present in the output FASTA file:
| {{ header }} | {% endfor %}
|---|
| {{ cell }} | {% endfor %}
No sequences failed length or N-content filters.
{% endif %}| ID | Length | N content |
|---|---|---|
| {{ row.id }} | {{ row.length }} | {{ row.n_content }} |
| {{ header }} | {% endfor %}
|---|
| {{ cell }} | {% endfor %}
No metadata issues detected.
{% endif %}