47d627a3ae7adefee58bf78255521416efcb470f
mspeir
  Fri Feb 3 10:19:18 2017 -0800
Minor rewording based on CR, refs #18674

diff --git src/hg/lib/sangerGene.as src/hg/lib/sangerGene.as
index 733a2a2..c1e8b2c 100644
--- src/hg/lib/sangerGene.as
+++ src/hg/lib/sangerGene.as
@@ -1,15 +1,15 @@
 table sangerGene
 "GenePred table with proteinID field for WormBase Genes."
     (
     string name;	"Name of gene"
     string chrom;	"Reference sequence chromosome or scaffold"
     char[1] strand;     "+ or - for strand"
-    uint txStart;	"Transcription start position (or transcription end position if item is on minus strand)"
-    uint txEnd;         "Transcription end position (or transcription start position if item is on minus strand)"
-    uint cdsStart;	"Coding region start (or coding end position if item is on minus strand)"
-    uint cdsEnd;        "Coding region end (or coding start position if item is on minus strand)"
+    uint txStart;	"Transcription start position (or end position for minus strand item)"
+    uint txEnd;         "Transcription end position (or start position for minus strand item)"
+    uint cdsStart;	"Coding region start (or end position for minus strand item)"
+    uint cdsEnd;        "Coding region end (or start position for minus strand item)"
     uint exonCount;     "Number of exons"
-    uint[exonCount] exonStarts; "Exon start positions (or exon end positions if item is on minus strand)"
-    uint[exonCount] exonEnds;   "Exon end positions (or exon start positions if item is on minus strand)"
+    uint[exonCount] exonStarts; "Exon start positions (or end positions for minus strand item)"
+    uint[exonCount] exonEnds;   "Exon end positions (or start positions for minus strand item)"
     string proteinID;	"Swiss-Prot protein ID"
     )