Skip to content

Commit e065a5f

Browse files
committed
prep for release
1 parent b54ce45 commit e065a5f

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
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.11
2+
=======
3+
+ add --fragment-mode (#246 from @LudvigOlsen). calculates coverage over a full fragment, including insert.
4+
15
v0.3.10
26
=======
37
+ write sfi index in d4 files (#243)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ when appropriate, the output files are bgzipped and indexed for ease of use.
2323
## usage
2424

2525
```
26-
mosdepth 0.3.9
26+
mosdepth 0.3.11
2727
2828
Usage: mosdepth [options] <prefix> <BAM-or-CRAM>
2929
@@ -46,13 +46,13 @@ Common Options:
4646
-n --no-per-base dont output per-base depth. skipping this output will speed execution
4747
substantially. prefer quantized or thresholded values if possible.
4848
-f --fasta <fasta> fasta file for use with CRAM files [default: ].
49-
--d4 output per-base depth in d4 format.
5049
5150
Other options:
5251
5352
-F --flag <FLAG> exclude reads with any of the bits in FLAG set [default: 1796]
5453
-i --include-flag <FLAG> only include reads with any of the bits in FLAG set. default is unset. [default: 0]
5554
-x --fast-mode dont look at internal cigar operations or correct mate overlaps (recommended for most use-cases).
55+
-a --fragment-mode count the coverage of the full fragment including the full insert (proper pairs only).
5656
-q --quantize <segments> write quantized output see docs for description.
5757
-Q --mapq <mapq> mapping quality threshold. reads with a quality less than this value are ignored [default: 0]
5858
-l --min-frag-len <min-frag-len> minimum insert size. reads with a smaller insert size than this are ignored [default: -1]

mosdepth.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ when(isMainModule):
844844
when not defined(release) and not defined(lto):
845845
stderr.write_line "[mosdepth] WARNING: built in debug mode; will be slow"
846846

847-
let version = "mosdepth 0.3.10"
847+
let version = "mosdepth 0.3.11"
848848
let env_fasta = getEnv("REF_PATH")
849849
var doc = format("""
850850
$version
@@ -965,4 +965,4 @@ Other options:
965965

966966
main(bam, chrom, mapq, min_len, max_len, eflag, iflag, region, thresholds,
967967
fast_mode, args, use_median = use_median, fragment_mode = fragment_mode, use_d4 = use_d4)
968-
968+

mosdepth.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

3-
version = "0.3.10"
3+
version = "0.3.11"
44
author = "Brent Pedersen"
55
description = "fast depth"
66
license = "MIT"

0 commit comments

Comments
 (0)