{% macro optional_shallow_validation_report(validation_results) -%} {% set results = validation_results.get('shallow_validation', {}) %} {% if results.get('required') %}
You requested to run the shallow validation, please run full validation before submitting the data
{% for vcf_file in results.get('metrics') %} {% endfor %}
VCF File Variant lines validated in VCF Entries used in Fasta
{{ vcf_file }} {{ results.get('metrics').get(vcf_file).get('trim_down_vcf_record') }} {{ results.get('metrics').get(vcf_file).get('number_sequence_found') }}
{% endif %} {%- endmacro %}