Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ perbase base-depth ./test/test.bam
Example output

```text
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
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
chr1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
chr1 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
chr1 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
Expand Down
4 changes: 2 additions & 2 deletions src/lib/position/pileup_position.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub struct PileupPosition {
/// Number of reads failing filters at this position.
pub fail: u32,
/// Number of times a mate resolution was needed.
pub count_of_mate_resoutions: u32,
pub count_of_mate_resolutions: u32,
/// Depth is within 1% of max_depth
pub near_max_depth: bool,
}
Expand Down Expand Up @@ -143,7 +143,7 @@ impl PileupPosition {
}

if mates_resolved {
self.count_of_mate_resoutions += 1;
self.count_of_mate_resolutions += 1;
}
}

Expand Down