Skip to content

Commit

Permalink
Blast DB size was changed to uint64. Make other code work.
Browse files Browse the repository at this point in the history
  • Loading branch information
BurntSushi committed Jul 1, 2013
1 parent b96e662 commit 6b373ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cablastp-compress/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func main() {
if readSeq.Err != nil {
log.Fatal(err)
}
totalResidues += readSeq.Seq.Len()
totalResidues += uint64(readSeq.Seq.Len())
orgSeqId = pool.compress(orgSeqId, readSeq.Seq)
verboseOutput(db, orgSeqId)
if flagMaxSeedsGB > 0 && orgSeqId%10000 == 0 {
Expand Down

0 comments on commit 6b373ec

Please sign in to comment.