1cbaa9ddcb7a13929a2217db78d6b36ff738fe15 hiram Fri Apr 24 10:52:34 2026 -0700 doneStatus can simply be status refs #31811 diff --git src/hg/inc/ottoRequest.h src/hg/inc/ottoRequest.h index df9c7601411..ec2538d1a0e 100644 --- src/hg/inc/ottoRequest.h +++ src/hg/inc/ottoRequest.h @@ -9,31 +9,31 @@ #define OTTOREQUEST_NUM_COLS 10 extern char *ottoRequestCommaSepFieldNames; struct ottoRequest /* recording requests coming from from functions such as liftRequest */ { struct ottoRequest *next; /* Next in singly linked list. */ unsigned id; /* Auto-incrementing request count */ char *requestType; /* type of request: liftOver or assembly */ char *fromDb; /* can be a database name or a GC[AF]_ GenArk accession */ char *toDb; /* can be a database name or a GC[AF]_ GenArk accession */ char *email; /* user email address */ char *comment; /* other comments from the input form */ char *requestTime; /* date time request was added */ - unsigned char doneStatus; /* 0 == pending, 1 == notified/in progress, 2 == complete, 3 == problems */ + unsigned char status; /* 0 pending, 1 notified, 2 in progress, 3 galaxy done, 4 tracks complete, 5 finish notification, 6 complete, 7 problems */ char *buildDir; /* galaxy workflow ID */ char *completeTime; /* date time for process completed and user notified */ }; void ottoRequestStaticLoad(char **row, struct ottoRequest *ret); /* Load a row from ottoRequest table into ret. The contents of ret will * be replaced at the next call to this function. */ struct ottoRequest *ottoRequestLoadByQuery(struct sqlConnection *conn, char *query); /* Load all ottoRequest from table that satisfy the query given. * Where query is of the form 'select * from example where something=something' * or 'select example.* from example, anotherTable where example.something = * anotherTable.something'. * Dispose of this with ottoRequestFreeList(). */