Project description
{% if analysis.description is not none %}
{{ analysis.description }}
{% endif %}
{% if analysis.data_type is not none %}
The project main data type is {{ analysis.data_type }}.
{% endif %}
{% if analysis.organism is not none %}
The project main organism is {{ analysis.organism }}.
{% endif %}
{% if analysis.genome is not none %}
The project main genome assembly is {{ analysis.genome }}.
{% endif %}
More details
{% for key, value in project_repr.items() %}
-
{{ key }}: {{ value }}
{% endfor %}
Project contains {{ samples|length }} samples:
Analysis report
{% for section, fig_list in images.items() %}
{{ section }}
{% for caption, csv in csvs[section] %}
{% endfor %}
{% for caption, fig in fig_list %}
{{ caption }}
{% endfor %}
{% endfor %}
Versioning
- Python version: {{ python_version }}
- ngs-toolkit version: {{ library_version }}
Additional Python libraries
{% for library in freeze %}
- {{ library }}
{% endfor %}