Skip to content

Commit

Permalink
allow specifying a custom index (via hts-nim)
Browse files Browse the repository at this point in the history
use /path/to/bam##idx##/other-path/to/bam.index
  • Loading branch information
brentp committed Feb 2, 2022
1 parent fed74a2 commit be00d6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.3.3
======
+ allow specifying a custom index by passing '/path/to/bam##idx##/other-path/to/index.bai'

v0.3.1
======
+ fix bug with regions and d4 that would cause error even when --d4 was not used.
Expand Down
2 changes: 1 addition & 1 deletion mosdepth.nim
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ when(isMainModule):
when not defined(release) and not defined(lto):
stderr.write_line "[mosdepth] WARNING: built in debug mode; will be slow"

let version = "mosdepth 0.3.2"
let version = "mosdepth 0.3.3"
let env_fasta = getEnv("REF_PATH")
var doc = format("""
$version
Expand Down
4 changes: 2 additions & 2 deletions mosdepth.nimble
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Package

version = "0.3.2"
version = "0.3.3"
author = "Brent Pedersen"
description = "fast depth"
license = "MIT"

# Dependencies

requires "hts >= 0.3.1", "docopt >= 0.6.8", "nim >= 1.0.0", "https://github.com/brentp/d4-nim"
requires "hts >= 0.3.21", "docopt >= 0.6.8", "nim >= 1.0.0", "https://github.com/brentp/d4-nim"

bin = @["mosdepth"]
skipDirs = @["tests"]
Expand Down

0 comments on commit be00d6f

Please sign in to comment.