File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ perbase base-depth ./test/test.bam
6969Example 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
7373chr1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
7474chr1 2 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
7575chr1 3 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 false
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments