{% macro sample_name_check_report(validation_results) -%} {% set results = validation_results.get('sample_check', {}) %} {% for analysis, results_for_analysis in results.get('results_per_analysis', {}).items() %} {% if results_for_analysis.get('difference') %} {% set icon = "❌" %} {% set row_class = "report-section fail collapsible" %} {% else %} {% set icon = "✔" %} {% set row_class = "report-section pass" %} {% endif %}
Category | Error |
---|---|
Samples described in the metadata but not in the VCF files | {{ results_for_analysis.get('more_metadata_submitted_files')[:10]|join(", ") }} |
Samples in the VCF files but not described in the metadata | {{ results_for_analysis.get('more_submitted_files_metadata')[:10]|join(", ") }} |