src/hg/instinct/flatfileToBED15/flatfileToBED15.c 1.6
1.6 2010/05/28 20:47:53 cszeto
Removed some unecessary printlines
Index: src/hg/instinct/flatfileToBED15/flatfileToBED15.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/flatfileToBED15/flatfileToBED15.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -B -U 4 -r1.5 -r1.6
--- src/hg/instinct/flatfileToBED15/flatfileToBED15.c 28 May 2010 20:10:13 -0000 1.5
+++ src/hg/instinct/flatfileToBED15/flatfileToBED15.c 28 May 2010 20:47:53 -0000 1.6
@@ -61,14 +61,12 @@
fprintf(fp, "names ");
tok = strtok(line, "\t\n");
tok = strtok(NULL, "\t\n"); //skip the 'names' entry
- fprintf(stderr, "EERE\n");
while(tok != NULL){
fprintf(fp,"%s,", tok);
tok=strtok(NULL, "\t\n");
}
- fprintf(stderr, "never HERE\n");
fprintf(fp, "\n");
fclose(fp);
return expCount;