Upload templates/analysis.html with huggingface_hub
Browse files- templates/analysis.html +1 -1
templates/analysis.html
CHANGED
|
@@ -290,7 +290,7 @@
|
|
| 290 |
const allData = [
|
| 291 |
{% for ag in comp_antigens %}
|
| 292 |
{ antigen: '{{ ag.antigen }}', allele: '{{ ag.allele }}',
|
| 293 |
-
values: [{% for d in comp_dates %}{{ ag.mfi_by_date.get(d, {}).get('max_mfi',
|
| 294 |
{% endfor %}
|
| 295 |
];
|
| 296 |
|
|
|
|
| 290 |
const allData = [
|
| 291 |
{% for ag in comp_antigens %}
|
| 292 |
{ antigen: '{{ ag.antigen }}', allele: '{{ ag.allele }}',
|
| 293 |
+
values: [{% for d in comp_dates %}{{ ag.mfi_by_date.get(d, {}).get('max_mfi', 0) }}{% if not loop.last %},{% endif %}{% endfor %}] },
|
| 294 |
{% endfor %}
|
| 295 |
];
|
| 296 |
|