07d7f25806ce4a1f558c3ea5b76b9e590fdad6b2 tdreszer Thu Jun 30 10:54:08 2011 -0700 Adding BORDER=1 back in, because Brooke pointed out the change in the table. While this is 'deprecated' in favor of style, the simple style used here did not reproduce the as desired and we are still ruinning 4.01 transitional anyway. diff --git src/hg/lib/hVarSubst.c src/hg/lib/hVarSubst.c index 10275b7..37c6cea 100644 --- src/hg/lib/hVarSubst.c +++ src/hg/lib/hVarSubst.c @@ -99,31 +99,31 @@ int size; int i, j, k; int wordCount = 0, headerCount = 0; wordCount = chopString(cloneString(matrix), ", \t", words, ArraySize(words)); if (matrixHeader != NULL) headerCount = chopString(cloneString(matrixHeader), ", \t", headerWords, ArraySize(headerWords)); errno = 0; size = sqrt(sqlDouble(words[0])); if (errno) errAbort("Invalid matrix size in for track %s: %s\n", tdb->track, words[0]); dyStringAppend(dest, "The following matrix was used:
\n"); k = 1; -dyStringAppend(dest, "
\n"); +dyStringAppend(dest, "
\n"); if (matrixHeader) { dyStringAppend(dest, "
\n"); } for (i = 0; i < size; i++) { dyStringAppend(dest, " "); for (i = 0; i < size && i < headerCount; i++) dyStringPrintf(dest, " %s ", headerWords[i]); dyStringAppend(dest, ""); if (matrixHeader) dyStringPrintf(dest, " \n");%s ", headerWords[i]); for (j = 0; j < size && k < wordCount ; j++) dyStringPrintf(dest, "%s ", words[k++]); dyStringAppend(dest, "