annotate phageqc_report_annotation_table.tsv @ 5:c618332f2386 draft

planemo upload commit 8e1cddcc571bcc769e20a50cefd14053be5633d6-dirty
author cpt
date Fri, 24 May 2024 04:42:01 +0000
parents 32e011fa615c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
1 {% for (record, dataset) in annotation_table_data %}
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
2 # {% for col in annotation_table_col_names %}{{ col[0] }} {% endfor %}
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
3 {% for row in dataset %}
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
4
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
5 {% for col in row %}
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
6 {% if col is not string %}"{{ col | join }}"{% else %}{{ col }}{% endif %} {% endfor %}
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
7 {% endfor %}
32e011fa615c planemo upload commit edc74553919d09dcbe27fcadf144612c1ad3a2a2
cpt
parents:
diff changeset
8 {% endfor %}