c20579fc7c537c1736650125c5d264357d2cfa78
angie
  Mon Sep 18 13:15:16 2017 -0700
Big search & replace: use https instead of http for NCBI URLs.  refs #17793

diff --git src/hg/hgGene/swissProtComments.c src/hg/hgGene/swissProtComments.c
index 5a89388..77796bb 100644
--- src/hg/hgGene/swissProtComments.c
+++ src/hg/hgGene/swissProtComments.c
@@ -64,31 +64,31 @@
 		{
 		AllocVar(com);
 		com->typeId = atoi(row[0]);
 		com->valId = atoi(row[1]);
 		slAddHead(&list, com);
 		}
 	    slReverse(&list);
 	    section->items = list;
 	    }
 	}
     }
 
 return list != NULL;
 }
 
-static char *omimUrl = "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Search&db=OMIM&term=%d&doptcmdl=Detailed&tool=genome.ucsc.edu";
+static char *omimUrl = "https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Search&db=OMIM&term=%d&doptcmdl=Detailed&tool=genome.ucsc.edu";
 
 static void mimSubPrint(char *s)
 /* Print out putting in hyperlinks for OMIM. */
 {
 char *e, *f, *g;
 while (s != NULL && s[0] != 0)
     {
     boolean gotOmim = FALSE;
     e = stringIn("[MIM:", s);
     if (e != NULL)
         {
 	f = e + strlen("[MIM:");
 	if (isdigit(f[0]))
 	    {
 	    g = strchr(f, ']');