From 786bc1b74ba0eeecdc53b19398955d0ce47add7f Mon Sep 17 00:00:00 2001 From: Damion Dooley Date: Mon, 28 Oct 2024 08:28:20 -0700 Subject: [PATCH] documentation tweak --- web/templates/mpox/export.js | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/web/templates/mpox/export.js b/web/templates/mpox/export.js index 137bec6e..a60ae661 100644 --- a/web/templates/mpox/export.js +++ b/web/templates/mpox/export.js @@ -150,7 +150,34 @@ export default { ]; // GISAID has new sampling_strategy field as of May 12, 2021 - const header_GISAID = ['submitter','fn','pox_virus_name','pox_passage','pox_collection_date','pox_location','pox_add_location','pox_host','pox_add_host_info','pox_sampling_strategy','pox_gender','pox_patient_age','pox_patient_status','pox_specimen','pox_outbreak','pox_last_vaccinated','pox_treatment','pox_seq_technology','pox_assembly_method','pox_coverage','pox_orig_lab','pox_orig_lab_addr','pox_provider_sample_id','pox_subm_lab','pox_subm_lab_addr','pox_subm_sample_id','pox_authors']; + const header_GISAID = [ + 'submitter', + 'fn', + 'pox_virus_name', + 'pox_passage', + 'pox_collection_date', + 'pox_location', + 'pox_add_location', + 'pox_host', + 'pox_add_host_info', + 'pox_sampling_strategy', + 'pox_gender', + 'pox_patient_age', + 'pox_patient_status', + 'pox_specimen', + 'pox_outbreak', + 'pox_last_vaccinated', + 'pox_treatment', + 'pox_seq_technology', + 'pox_assembly_method', + 'pox_coverage', + 'pox_orig_lab', + 'pox_orig_lab_addr', + 'pox_provider_sample_id', + 'pox_subm_lab', + 'pox_subm_lab_addr', + 'pox_subm_sample_id', + 'pox_authors']; const sourceFields = dh.getFields(dh.table); const sourceFieldNameMap = dh.getFieldNameMap(sourceFields);