Skip to content

Commit

Permalink
Remove noisy printf statement
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jones committed Sep 9, 2018
1 parent f866262 commit 6a2b57f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/fai_access.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ int fai_access_get_count_length_all_contigs(char *fa_loc, int *count, int *total
while(fgets(rd, 1000, fai) != NULL){
check(rd != NULL,"Invalid line read\n");
*count = *count+1;
fprintf(stderr,"********** %s\n", rd);
int chk = sscanf(rd,"%s\t%d\t%*d\t%*d\t%*d",chr_name,&length);
check(chk == 2,"Wrong number of entries (%d) found in fasta index file line %s",chk,rd);
*total_len += strlen(chr_name);
Expand Down

0 comments on commit 6a2b57f

Please sign in to comment.