37b0cc79b41718a7d09c71e976502b5f46e6b771 max Thu Jan 19 12:10:28 2012 -0800 changed two strings based on rachel s comments diff --git src/hg/hgc/t2g.c src/hg/hgc/t2g.c index 36d61c4..7c77b04 100644 --- src/hg/hgc/t2g.c +++ src/hg/hgc/t2g.c @@ -71,31 +71,31 @@ chopString(seqIdCoords[i], ":", seqId, ArraySize(seqId)); if (t2gDebug) printf("%s, %s<br>", seqId[0], seqId[1]); hashAdd(seqIdHash, seqId[0], seqId[1]); } freeMem(seqIdCoordString); return seqIdHash; } void printSeqHeaders(bool showDesc, bool isClickedSection) { printf("<TABLE style=\"background-color: #%s\" WIDTH=\"100%%\" CELLPADDING=\"2\">\n", HG_COL_BORDER); printf("<TR style=\"background-color: #%s; color: #FFFFFF\">\n", HG_COL_TABLE_LABEL); if (showDesc) puts(" <TH style=\"width: 10%\">Article file</TH>\n"); - puts(" <TH style=\"width: 70%\">Sequence (in bold) with flanking text</TH>\n"); + puts(" <TH style=\"width: 70%\">One table row per sequence, with flanking text, sequence in bold</TH>\n"); if (t2gDebug) puts(" <TH style=\"width: 30%\">Identifiers</TH>\n"); if (!isClickedSection && !t2gDebug) puts(" <TH style=\"width: 20%\">Matches</TH>\n"); puts("</TR>\n"); } bool printSeqSection(char* docId, char* title, bool showDesc, struct sqlConnection* conn, struct hash* clickedSeqs, bool isClickedSection, bool fasta) /* print a table of sequences, show only sequences with IDs in hash, * There are two sections, respective sequences are shown depending on isClickedSection and clickedSeqs * - seqs that were clicked on (isClickedSection=True) -> show only seqs in clickedSeqs * - other seqs (isClickedSection=False) -> show all other seqs * * */