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/hgc/mgcClick.c src/hg/hgc/mgcClick.c
index c716f22..46d6264 100644
--- src/hg/hgc/mgcClick.c
+++ src/hg/hgc/mgcClick.c
@@ -103,31 +103,31 @@
 {
 printf("http://%s.nci.nih.gov/", mgcDb->server);
 }
 
 void printMgcUrl(int imageId)
 /* print out an URL to link to the MGC site for a full-length MGC clone */
 {
 struct mgcDb mgcDb = getMgcDb();
 printf("http://%s.nci.nih.gov/Reagents/CloneInfo?ORG=%s&IMAGE=%d",
        mgcDb.server, mgcDb.organism, imageId);
 }
 
 static void printOrderUrl(int gi)
 /* print out an URL to link to the NCBI order CGI for a full-length MGC clone */
 {
-printf("http://www.ncbi.nlm.nih.gov/genome/clone/orderclone.cgi?db=nucleotide&uid=%d", gi);
+printf("https://www.ncbi.nlm.nih.gov/genome/clone/orderclone.cgi?db=nucleotide&uid=%d", gi);
 }
 
 static void printImageUrl(int imageId)
 /* print out an URL to link to IMAGE database for a clone */
 {
 printf("http://www.imageconsortium.org/IQ/bin/singleCloneQuery?clone_id=%d", imageId);
 }
 
 void printMgcDetailsUrl(char *acc, int start)
 /* print out an URL to link to MGC details pages from another details page in
  * the browser.*/
 {
 // pass zero coordiates for window to indicate this isn't a browser click
 printf("../cgi-bin/hgc?%s&g=mgcGenes&o=%d&i=%s&l=0&r=0&db=%s",
        cartSidUrlString(cart), start, acc, database);