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("Phenotype:
");
while (row != NULL)
{
printf("- ");
printf("%s\n", row[0]);
row = sqlNextRow(sr);
}
printf("
");
}
sqlFreeResult(&sr);
/* link to Ensembl DECIPHER Patient View page */
printf("Patient View: \n");
printf("More details on patient %s at ", itemName);
printf("",
- "https://decipher.sanger.ac.uk/application/patient/", itemName);
+ "https://decipher.sanger.ac.uk/patient/", itemName);
printf("DECIPHER.
");
/* 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("
UCSC Canonical Gene(s) in this genomic region: ");
while (row != NULL)
{