277ff3968974a88ac87c01f01060177b0fab2458
kuhn
  Fri Apr 26 09:48:28 2013 -0700
indented details of Transcript and Coding Region and dropped colons because it was visually confusing.  the colons after the titles made it look like data were missing from those lines
diff --git src/hg/hgGene/hgGene.c src/hg/hgGene/hgGene.c
index 0a32fba..0513328 100644
--- src/hg/hgGene/hgGene.c
+++ src/hg/hgGene/hgGene.c
@@ -247,53 +247,53 @@
 char *description = descriptionString(id, conn);
 int  i, exonCnt = 0, cdsExonCnt = 0;
 int  cdsStart, cdsEnd;
 
 hPrintf("%s", description);
 freez(&description);
 
 /* print genome position and size */
 char buffer[1024];
 char *commaPos;
    
 exonCnt = curGenePred->exonCount;
 safef(buffer, sizeof buffer, "%s:%d-%d", curGeneChrom, curGeneStart+1, curGeneEnd);
 commaPos = addCommasToPos(database, buffer);
 
-hPrintf("<B>Transcript (Including UTRs):</B><br>\n");
-hPrintf("<B>Position:</B>&nbsp%s&nbsp",commaPos);
+hPrintf("<B>Transcript (Including UTRs)</B><br>\n");
+hPrintf("<B>&nbsp;&nbsp;&nbsp;Position:</B>&nbsp%s&nbsp",commaPos);
 sprintLongWithCommas(buffer, (long long)curGeneEnd - curGeneStart);
 hPrintf("<B>Size:</B>&nbsp%s&nbsp", buffer);
 hPrintf("<B>Total Exon Count:</B>&nbsp%d&nbsp", exonCnt);
 hPrintf("<B>Strand:</B>&nbsp%s<br>\n",curGenePred->strand);
 
 cdsStart = curGenePred->cdsStart;
 cdsEnd = curGenePred->cdsEnd;
 
 /* count CDS exons */
 if (cdsStart < cdsEnd)
     {
     for (i=0; i<exonCnt; i++)
 	{
 	if ( (cdsStart <= curGenePred->exonEnds[i]) &&
 	     (cdsEnd >= curGenePred->exonStarts[i]) )
 	     cdsExonCnt++;
 	}
-    hPrintf("<B>Coding Region:</B><br>\n");
+    hPrintf("<B>Coding Region</B><br>\n");
     safef(buffer, sizeof buffer, "%s:%d-%d", curGeneChrom, cdsStart+1, cdsEnd);
     commaPos = addCommasToPos(database, buffer);
-    hPrintf("<B>Position:</B>&nbsp%s&nbsp",commaPos);
+    hPrintf("<B>&nbsp;&nbsp;&nbsp;Position:</B>&nbsp%s&nbsp",commaPos);
     sprintLongWithCommas(buffer, (long long)cdsEnd - cdsStart);
     hPrintf("<B>Size:</B>&nbsp%s&nbsp", buffer);
     hPrintf("<B>Coding Exon Count:</B>&nbsp%d&nbsp\n", cdsExonCnt);
     }
 fflush(stdout);
 }
 
 char *sectionSetting(struct section *section, char *name)
 /* Return section setting value if it exists. */
 {
 return hashFindVal(section->settings, name);
 }
 
 char *sectionRequiredSetting(struct section *section, char *name)
 /* Return section setting.  Squawk and die if it doesn't exist. */