Skip to content

Commit e0b1d4b

Browse files
camlloydsstadick
authored andcommitted
fix: typo
1 parent 8aca980 commit e0b1d4b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ perbase base-depth ./test/test.bam
6969
Example output
7070

7171
```text
72-
REF POS DEPTH A C G T N R Y S W K M INS DEL REF_SKIP FAIL COUNT_OF_MATE_RESOUTIONS NEAR_MAX_DEPTH
72+
REF POS DEPTH A C G T N R Y S W K M INS DEL REF_SKIP FAIL COUNT_OF_MATE_RESOLUTIONS NEAR_MAX_DEPTH
7373
chr1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
7474
chr1 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
7575
chr1 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false

src/lib/position/pileup_position.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub struct PileupPosition {
6161
/// Number of reads failing filters at this position.
6262
pub fail: u32,
6363
/// Number of times a mate resolution was needed.
64-
pub count_of_mate_resoutions: u32,
64+
pub count_of_mate_resolutions: u32,
6565
/// Depth is within 1% of max_depth
6666
pub near_max_depth: bool,
6767
}
@@ -143,7 +143,7 @@ impl PileupPosition {
143143
}
144144

145145
if mates_resolved {
146-
self.count_of_mate_resoutions += 1;
146+
self.count_of_mate_resolutions += 1;
147147
}
148148
}
149149

0 commit comments

Comments
 (0)