8fdc86ea29f656cf7efee9954fdae6b573190fb3
tdreszer
Fri May 6 17:23:22 2011 -0700
Standardized replacement for
with cgiDown and worked out more spacing issues in hgFileUi and hgTrackUi.
diff --git src/hg/hgTables/seqOut.c src/hg/hgTables/seqOut.c
index 3f162df..785cd51 100644
--- src/hg/hgTables/seqOut.c
+++ src/hg/hgTables/seqOut.c
@@ -73,31 +73,31 @@
* peptide/mrna only if there are corresponding table
* in the type field. */
for (typeIx = 0; typeIx < typeWordCount; ++typeIx)
{
if (typeIx == 0 || sqlTableExists(conn, typeWords[typeIx]))
{
genePredTypeButton(genePredMenu[typeIx], predType);
hPrintf(" %s
\n", genePredMenu[typeIx]);
}
}
}
cgiMakeButton(hgtaDoGenePredSequence, "submit");
hPrintf(" ");
cgiMakeButton(hgtaDoMainPage, "cancel");
hPrintf("\n");
-hPrintf("
\n");
+cgiDown(0.9);
htmlClose();
freez(&dupType);
}
void doRefGeneProteinSequence(struct sqlConnection *conn, struct bed *bedList)
/* Fetch refGene proteins corresponding to names in bedList. */
{
struct hash *uniqHash = newHash(18);
struct hash *protHash = newHash(18);
struct sqlResult *sr;
char **row;
struct bed *bed;
@@ -237,31 +237,31 @@
hgSeqOptionsHtiCart(hti, cart);
hPrintf("
\n");
if (doGalaxy())
{
/* pass parameter to get sequence to Galaxy */
cgiMakeHiddenVar(hgtaDoGenomicDna, "get sequence");
printGalaxySubmitButtons();
}
else
{
cgiMakeButton(hgtaDoGenomicDna, "get sequence");
hPrintf(" ");
cgiMakeButton(hgtaDoMainPage, "cancel");
hPrintf("");
}
-hPrintf("\n");
+cgiDown(0.9);
htmlClose();
}
void doGenomicDna(struct sqlConnection *conn)
/* Get genomic sequence (UI has already told us how). */
{
struct region *region, *regionList = getRegions();
struct hTableInfo *hti = getHti(database, curTable, conn);
int fieldCount;
textOpen();
boolean gotResult = FALSE;
for (region = regionList; region != NULL; region = region->next)
{
struct lm *lm = lmInit(64*1024);
struct bed *bedList = cookedBedList(conn, curTable, region, lm, &fieldCount);