d1f8f01946e1d632e0b9f1942f6090d660299876
braney
  Fri Jan 11 11:18:00 2013 -0800
fix linkout URL to DECIPHER #8840
diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index 45e7e14..f032074 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -9447,31 +9447,31 @@
     printf("<B>Phenotype: </B><UL>");
     while (row != NULL)
         {
 	printf("<LI>");
 	printf("%s\n", row[0]);
 	row = sqlNextRow(sr);
         }
     printf("</UL>");
     }
 sqlFreeResult(&sr);
 
 /* link to Ensembl DECIPHER Patient View page */
 printf("<B>Patient View: </B>\n");
 printf("More details on patient %s at ", itemName);
 printf("<A HREF=\"%s%s\" target=_blank>",
-       "https://decipher.sanger.ac.uk/application/patient/", itemName);
+       "https://decipher.sanger.ac.uk/patient/", itemName);
 printf("DECIPHER</A>.<BR><BR>");
 
 /* print position info */
 printPosOnChrom(chrom, start, end, strand, TRUE, itemName);
 
 /* print UCSC Genes in the reported region */
 safef(query, sizeof(query),
       "select distinct t.name from knownCanonToDecipher t, kgXref x  where value ='%s' and x.kgId=t.name order by geneSymbol", itemName);
 sr = sqlMustGetResult(conn, query);
 row = sqlNextRow(sr);
 if (row != NULL)
     {
     printf("<BR><B>UCSC Canonical Gene(s) in this genomic region: </B><UL>");
     while (row != NULL)
         {