ba8f65526e0188c88d6f493077eb0203e3607269
kuhn
  Mon Mar 21 10:33:02 2022 -0700
swapped two fields to more logical order

diff --git src/hg/lib/evaSnp.as src/hg/lib/evaSnp.as
index 4a815d9..8d1adb4 100644
--- src/hg/lib/evaSnp.as
+++ src/hg/lib/evaSnp.as
@@ -2,18 +2,18 @@
 "Variant data from EVA VCF files"
     (
     string   chrom;      "Reference sequence chromosome or scaffold"
     uint     chromStart; "Start position in chrom"
     uint     chromEnd;   "End position in chrom"
     string   name;       "Reference SNP identifier"
     uint     score;      "Not used"
     char[1]  strand;     "Which DNA strand contains the observed alleles"
     uint     thickStart; "Same as chromStart"
     uint     thickEnd;   "Same as chromEnd"
     uint     itemRgb;    "RGB value for color of item"
     lstring  ref;        "The sequence of the reference allele"
     lstring  alt;        "The sequences of the alternate alleles"
     string   varClass;   "The variant class (VC) from EVA Sequence Ontology term"
     lstring  submitters; "Submitter ID (SID) reporting a variant"
-    string   aaChange;   "Change in amino acid"
     string   ucscClass;  "Class of variant per UCSC Variant Annotation Integrator"
+    string   aaChange;   "Change in amino acid"
     )