Skip to content

Commit

Permalink
updating print statement in accuracy-test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Rowe committed Apr 20, 2019
1 parent 7b4c9f4 commit e1c629b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions paper/benchmarking/accuracy/accuracy-test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ package main
import (
"flag"
"fmt"
"github.com/biogo/hts/bam"
"github.com/biogo/hts/bgzf"
"github.com/biogo/hts/sam"
"io"
"log"
"os"
"strings"

"github.com/biogo/hts/bam"
"github.com/biogo/hts/bgzf"
"github.com/biogo/hts/sam"
)

var inputFile = flag.String("bam", "", "bam file to run accuracy test on")
Expand All @@ -28,7 +29,7 @@ func main() {
log.Fatalf("could not open bam file %q:", err)
}
if !ok {
log.Printf("file %q has no bgzf magic block: may be truncated", inputFile)
log.Printf("file %v has no bgzf magic block: may be truncated", inputFile)
}
r = f
b, err := bam.NewReader(r, 0)
Expand Down

0 comments on commit e1c629b

Please sign in to comment.