Skip to content

Commit

Permalink
Merge branch 'hotfix/1.13.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jones committed Sep 9, 2018
2 parents df19022 + 6a2b57f commit 9dcb034
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGES

## 1.13.5

* Remove printf that causes all contigs to be printed to stderr.

## 1.13.4

* Fix incorrect file path introduced in 1.13.3
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CAVEMAN_VERSION=1.13.4
CAVEMAN_VERSION=1.13.5
TEST_REF?=""
#Compiler
CC?=gcc
Expand Down
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 9dcb034

Please sign in to comment.