4ac9486a77f0ed4e87de2e946f29e203b354398b
markd
  Thu Jun 13 13:56:46 2024 -0700
added chainToBigChain command

diff --git src/hg/inc/bigChain.h src/hg/inc/bigChain.h
index f0748ba..bcb9914 100644
--- src/hg/inc/bigChain.h
+++ src/hg/inc/bigChain.h
@@ -58,17 +58,20 @@
 
 void bigChainFreeList(struct bigChain **pList);
 /* Free a list of dynamically allocated bigChain's */
 
 void bigChainOutput(struct bigChain *el, FILE *f, char sep, char lastSep);
 /* Print out bigChain.  Separate fields with sep. Follow last field with lastSep. */
 
 #define bigChainTabOut(el,f) bigChainOutput(el,f,'\t','\n');
 /* Print out bigChain as a line in a tab-separated file. */
 
 #define bigChainCommaOut(el,f) bigChainOutput(el,f,',',',');
 /* Print out bigChain as a comma separated list including final comma. */
 
 /* -------------------------------- End autoSql Generated Code -------------------------------- */
 
+int bigChainCmpTarget(const void *va, const void *vb);
+/* Compare to sort based on target position. */
+
 #endif /* BIGCHAIN_H */