src/hg/hgTables/hgTables.c 1.190
1.190 2010/04/09 18:41:17 markd
Switch GTF output to being true GTF
Index: src/hg/hgTables/hgTables.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/hgTables.c,v
retrieving revision 1.189
retrieving revision 1.190
diff -b -B -U 4 -r1.189 -r1.190
--- src/hg/hgTables/hgTables.c 25 Mar 2010 17:41:25 -0000 1.189
+++ src/hg/hgTables/hgTables.c 9 Apr 2010 18:41:17 -0000 1.190
@@ -1525,9 +1525,9 @@
{
if (doGalaxy() && !cgiOptionalString(hgtaDoGalaxyQuery))
sendParamsToGalaxy(hgtaDoTopSubmit, "get output");
else
- doOutGff(table, conn);
+ doOutGff(table, conn, TRUE);
}
else if (sameString(output, outHyperlinks))
{
if (doGalaxy() && !cgiOptionalString(hgtaDoGalaxyQuery))
@@ -1776,8 +1776,10 @@
pushCarefulMemHandler(LIMIT_2or6GB);
htmlPushEarlyHandlers(); /* Make errors legible during initialization. */
cgiSpoof(&argc, argv);
+struct dyString *in = cgiUrlString();
+fprintf(stderr, "%s\n", in->string);
hgTables();
textOutClose(&compressPipeline);