325a0ac872093ece144003bb3828c419ff82cc31 chmalee Thu Dec 15 16:17:31 2022 -0800 Remove mistakenly committed asmAlias file, refs build email diff --git src/hg/lib/asmAlias.h src/hg/lib/asmAlias.h deleted file mode 100644 index 8f15fec..0000000 --- src/hg/lib/asmAlias.h +++ /dev/null @@ -1,64 +0,0 @@ -/* asmAlias.h was originally generated by the autoSql program, which also - * generated asmAlias.c and asmAlias.sql. This header links the database and - * the RAM representation of objects. */ - -#ifndef ASMALIAS_H -#define ASMALIAS_H - -#define ASMALIAS_NUM_COLS 2 - -extern char *asmAliasCommaSepFieldNames; - -struct asmAlias -/* correspondence of assembly identifiers to UCSC database or GenArk hub equivalents */ - { - struct asmAlias *next; /* Next in singly linked list. */ - char *alias; /* external assembly name */ - char *browser; /* UCSC genome browser equivalent */ - }; - -void asmAliasStaticLoad(char **row, struct asmAlias *ret); -/* Load a row from asmAlias table into ret. The contents of ret will - * be replaced at the next call to this function. */ - -struct asmAlias *asmAliasLoad(char **row); -/* Load a asmAlias from row fetched with select * from asmAlias - * from database. Dispose of this with asmAliasFree(). */ - -struct asmAlias *asmAliasLoadAll(char *fileName); -/* Load all asmAlias from whitespace-separated file. - * Dispose of this with asmAliasFreeList(). */ - -struct asmAlias *asmAliasLoadAllByChar(char *fileName, char chopper); -/* Load all asmAlias from chopper separated file. - * Dispose of this with asmAliasFreeList(). */ - -#define asmAliasLoadAllByTab(a) asmAliasLoadAllByChar(a, '\t'); -/* Load all asmAlias from tab separated file. - * Dispose of this with asmAliasFreeList(). */ - -struct asmAlias *asmAliasCommaIn(char **pS, struct asmAlias *ret); -/* Create a asmAlias out of a comma separated string. - * This will fill in ret if non-null, otherwise will - * return a new asmAlias */ - -void asmAliasFree(struct asmAlias **pEl); -/* Free a single dynamically allocated asmAlias such as created - * with asmAliasLoad(). */ - -void asmAliasFreeList(struct asmAlias **pList); -/* Free a list of dynamically allocated asmAlias's */ - -void asmAliasOutput(struct asmAlias *el, FILE *f, char sep, char lastSep); -/* Print out asmAlias. Separate fields with sep. Follow last field with lastSep. */ - -#define asmAliasTabOut(el,f) asmAliasOutput(el,f,'\t','\n'); -/* Print out asmAlias as a line in a tab-separated file. */ - -#define asmAliasCommaOut(el,f) asmAliasOutput(el,f,',',','); -/* Print out asmAlias as a comma separated list including final comma. */ - -/* -------------------------------- End autoSql Generated Code -------------------------------- */ - -#endif /* ASMALIAS_H */ -