Skip to content

Commit

Permalink
Logging: report the number of reads not in unitigs, instead of 'some'.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianwalenz committed Jun 17, 2013
1 parent 9332551 commit 10bac85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AS_CGW/Input_CGW.c
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ ProcessInput(int optind, int argc, char *argv[]){
fprintf(stderr, " microhet: "F_U32" unitigs with total length "F_U64"\n", repeat_MicroHet.num, repeat_MicroHet.len);

if (numErrors > 0)
fprintf(stderr, "ERROR: Some fragments are not in unitigs.\n");
fprintf(stderr, "ERROR: %u fragments are not in unitigs.\n", numErrors);
assert(numErrors == 0);

ScaffoldGraph->numLiveCIs = GetNumGraphNodes(ScaffoldGraph->CIGraph);
Expand Down

0 comments on commit 10bac85

Please sign in to comment.