440d84ee43c6a5f8a22bfe7886681db4ee7cc202
braney
  Thu Aug 28 16:55:27 2014 -0700
adding more support for bigGenePred in hgc and hgTables.
diff --git src/hg/hgTables/seqOut.c src/hg/hgTables/seqOut.c
index 74b6006..3fc7c1d 100644
--- src/hg/hgTables/seqOut.c
+++ src/hg/hgTables/seqOut.c
@@ -290,20 +290,20 @@
 else if (sameWord(type, "mRNA"))
     {
     if (doGalaxy() && !cgiOptionalString(hgtaDoGalaxyQuery))
         sendParamsToGalaxy(hgtaDoGenePredSequence, "submit");
     else
         doGenePredNongenomic(conn, 2);
     }
 else
     genomicFormatPage(conn);
 }
 
 void doOutSequence(struct sqlConnection *conn)
 /* Output sequence page. */
 {
 struct trackDb *tdb = findTdbForTable(database, curTrack, curTable, ctLookupName);
-if (tdb != NULL && startsWith("genePred", tdb->type))
+if (tdb != NULL && (startsWith("genePred", tdb->type) || startsWith("bigGenePred", tdb->type)))
     genePredOptions(tdb, curTrack->type, conn);
 else
     genomicFormatPage(conn);
 }