c12ecb21298a3c6d19b6381ede7bd1477cabefab
kuhn
  Mon Feb 28 17:20:04 2022 -0800
changes per BriLee code review, incl conforming to makedoc conventions, adding filters on dogSnp track.  added evaSnp.as file, which was forgotten. refs #29025

diff --git src/hg/lib/evaSnp.as src/hg/lib/evaSnp.as
new file mode 100644
index 0000000..8f09375
--- /dev/null
+++ src/hg/lib/evaSnp.as
@@ -0,0 +1,15 @@
+table evaSnp
+"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"
+    string  ref;        "The sequence of the reference allele"
+    string  alt;        "The sequences of the alternate alleles"
+    string  class;      "The class of variant"
+    string  submitters; "Source of the data"
+    string  valid;      "The rs_validation status of the SNP"
+    )