diff --git a/args.go b/args.go index 3eb16dc..1bf7f40 100644 --- a/args.go +++ b/args.go @@ -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 @@ -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) } diff --git a/spliced_bam2gff b/spliced_bam2gff index f9acdc8..0bb1f17 100755 Binary files a/spliced_bam2gff and b/spliced_bam2gff differ