src/hg/utils/gff3ToGenePred/gff3ToGenePred.c 1.6
1.6 2010/03/26 22:03:18 markd
clarified error handling
Index: src/hg/utils/gff3ToGenePred/gff3ToGenePred.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/utils/gff3ToGenePred/gff3ToGenePred.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 4 -r1.5 -r1.6
--- src/hg/utils/gff3ToGenePred/gff3ToGenePred.c 23 Mar 2010 21:51:36 -0000 1.5
+++ src/hg/utils/gff3ToGenePred/gff3ToGenePred.c 26 Mar 2010 22:03:18 -0000 1.6
@@ -39,9 +39,11 @@
static int convertErrCnt = 0; // number of convert errors
static void cnvError(char *format, ...)
-/* print a convert error */
+/* print a GFF3 to gene conversion error. This will return. Code must check
+ * for error count to be exceeded and unwind to the top level to print a usefull
+ * error message and abort. */
{
fputs("Error: ", stderr);
va_list args;
va_start(args, format);