fcfb91470c294d3b991dbd0d24cba67de9ed65cb hiram Tue Apr 21 14:20:57 2026 -0700 create ottoRequest cron watch script refs #31811 diff --git src/hg/inc/ottoRequest.h src/hg/inc/ottoRequest.h index a4edaf2ab91..df712e28364 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; /* # 1 == process is complete, 0 == process to be done */ + unsigned char doneStatus; /* 0 == pending, 1 == notified/in progress, 2 == complete */ char *workflowId; /* 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(). */