Skip to content

Commit

Permalink
updating travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Rowe committed Aug 7, 2018
1 parent ecf51a4 commit 8c242d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -12,7 +12,7 @@ go:
install:
- go get -d -t -v ./...
- go test -v ./...
- go build -v ./...
- go build -v -o ./hulk

script:
- ./hulk sketch -f ./testing/test-reads-small.fq.gz -o test.sketch -s 16 -p 1
Expand Down
2 changes: 1 addition & 1 deletion src/histosketch/histosketch.go
Expand Up @@ -56,7 +56,7 @@ func (HistoSketch *HistoSketch) newCWS() {
r[i][j] = gammaGenerator.Gamma(2, 1)
c[i][j] = math.Log(gammaGenerator.Gamma(2, 1))
//b[i][j] = uniformGenerator.Float64Range(0, 1) // as in paper
// I've multipled beta by r and stored this instead of just beta
// I've multiplied beta by r and stored this instead of just beta
b[i][j] = uniformGenerator.Float64Range(0, 1) * r[i][j]
}
}
Expand Down

0 comments on commit 8c242d0

Please sign in to comment.