Skip to content

Commit

Permalink
Release v0.11.2 - let trespassers go with a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
arendsee committed Aug 17, 2016
1 parent d7fe0bf commit fad5d48
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/synmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,12 @@ void validate_synmap(Synmap * syn){
con = SGC(syn, gid, cid);
for(bid = 0; bid < con->size; bid++){
blk = con->block[bid];
assert(blk->pos[1] < con->length);
// assert(blk->pos[1] < con->length);
if(!(blk->pos[1] < con->length)){
fprintf(stderr,
"WARNING: stop greater than contig length: %zu vs %zu\n",
blk->pos[1], con->length);
}
assert(blk->setid == blk->over->setid);
assert(blk->setid != 0);
assert(blk->grpid != 0);
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef __VERSION_H__
#define __VERSION_H__

#define VERSION "v0.11.1"
#define VERSION "v0.11.2"

#endif

0 comments on commit fad5d48

Please sign in to comment.