7c2d98b2096ecfe0c2a45c4a8b81a0fd41788879 kate Wed Jul 5 14:45:11 2017 -0700 Cleanup before merge. refs #15646 diff --git src/hg/hgc/gtexEqtlClusterClick.c src/hg/hgc/gtexEqtlClusterClick.c index dc4b664..6a46cf6 100644 --- src/hg/hgc/gtexEqtlClusterClick.c +++ src/hg/hgc/gtexEqtlClusterClick.c @@ -93,31 +93,30 @@ safef(posLink, sizeof posLink,"%s:%d-%d", hgTracksPathAndSettings(), database, eqtl->chrom, start+1, end, eqtl->chrom, start+1, end); printf("
Region containing eQTLs for this gene: %s (%d bp, including +-%dbp flank)\n", posLink, end-start, FLANK); printf("
" "View eQTLs for this gene at the GTEx portal\n", geneName); printf("
Number of tissues with this eQTL: %d\n", eqtl->expCount); hFreeConn(&conn); webNewSection("eQTL cluster details"); printf("\n"); -//printf(""); printf(""); printf("\n"); for (i=0; iexpCount; i++) { double effect= eqtl->expScores[i]; double prob = eqtl->expProbs[i]; struct gtexTissue *tis = (struct gtexTissue *)hashFindVal(tissueHash, eqtl->expNames[i]); unsigned color = tis ? tis->color : 0; // BLACK char *name = tis ? tis->description : "Unknown"; printf("\n", color, name, effect < 0 ? "" : "+", effect, prob); } printf("
   TissueEffect   Probability
%s%s%0.2f%0.2f
"); webEndSection(); webNewEmptySection();