Skip to content

Commit

Permalink
Version fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsipos committed Dec 3, 2020
1 parent 087db2a commit 2a27d92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions args.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ const (
StrandTagRead = 2 // Use tag or read orientation if unavailable.
)

var Version, Build string

// Struct to hold command line arguments:
type CmdArgs struct {
MinimapInput bool
Expand Down Expand Up @@ -53,7 +51,8 @@ func (a *CmdArgs) Parse() {
}
// Print version:
if version {
fmt.Printf("version: %s build: %s\n", Version, Build)
Version := "1.2"
fmt.Printf("version: %s\n", Version)
os.Exit(0)
}

Expand Down
Binary file modified spliced_bam2gff
Binary file not shown.

0 comments on commit 2a27d92

Please sign in to comment.