Skip to content

Commit be00d6f

Browse files
committed
allow specifying a custom index (via hts-nim)
use /path/to/bam##idx##/other-path/to/bam.index
1 parent fed74a2 commit be00d6f

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.3.3
2+
======
3+
+ allow specifying a custom index by passing '/path/to/bam##idx##/other-path/to/index.bai'
4+
15
v0.3.1
26
======
37
+ fix bug with regions and d4 that would cause error even when --d4 was not used.

mosdepth.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ when(isMainModule):
775775
when not defined(release) and not defined(lto):
776776
stderr.write_line "[mosdepth] WARNING: built in debug mode; will be slow"
777777

778-
let version = "mosdepth 0.3.2"
778+
let version = "mosdepth 0.3.3"
779779
let env_fasta = getEnv("REF_PATH")
780780
var doc = format("""
781781
$version

mosdepth.nimble

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Package
22

3-
version = "0.3.2"
3+
version = "0.3.3"
44
author = "Brent Pedersen"
55
description = "fast depth"
66
license = "MIT"
77

88
# Dependencies
99

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

1212
bin = @["mosdepth"]
1313
skipDirs = @["tests"]

0 commit comments

Comments
 (0)