87c5e9fce6e96d4c7dd611bfffe3ca45ee2c5276
fanhsu
Tue Aug 30 11:06:15 2011 -0700
Changed ordering URL for IKMC from komp to knowckoutmouse site.
diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index e3062c3..72067a7 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -23093,31 +23093,31 @@
}
printf("
Center: %s | \n", center);
ptr = strrchr(row[0], '_');
if (ptr != NULL)
printf("Design ID: %s | \n", ptr+1);
printf("Status: %s", status);
if ((ptr != NULL) && (strstr(status, "vailable") != NULL))
{
char *productStr;
char *chp;
productStr = strdup(status);
chp = strstr(productStr, "vailable");
chp--;
chp--;
*chp = '\0';
- printf(" (",
+ printf(" (",
++ptr);
printf("order %s)", productStr);fflush(stdout);
}
printf(" |
\n");
}
}
puts("");
sqlFreeResult(&sr);
}
safef(query, sizeof(query), "select chrom,chromStart,chromEnd from %s "
"where name = '%s'", tdb->table, item);
sr = sqlGetResult(conn, query);
char lastChr[32];
int lastStart = -1;
int lastEnd = -1;
|