Skip to content

Commit

Permalink
Applied suggestions from code review (8/19)
Browse files Browse the repository at this point in the history
Co-Authored-By: Yossi Farjoun <[email protected]>
  • Loading branch information
michaelgatzen and Yossi Farjoun authored Aug 19, 2019
1 parent 7a5c757 commit 13f00e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ private static boolean advanceIteratorAndCheckLocus(final PeekableIterator<Varia
* whether or not a deletion has already been processed. Note that calling this method will
* have the side effect of signaling that the record is processed at this location.
*
* @param deletionRaO The RecordAndOffset to be checked
* @param deletionRao The RecordAndOffset to be checked
* @param locusInfo The LocusInfo to determine the current locus
* @return True, if the record has been seen at the previous locus. False, if it has not yet been seen.
*/
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/picard/sam/SamErrorMetric/IndelErrorMetric.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class IndelErrorMetric extends BaseErrorMetric {
* The number of insertions. Note: This is not the number of bases that have been inserted.
*/
@MergeByAdding
public long NUM_INSERTS = 0;
public long NUM_INSERTIONS = 0;

/**
* The number of inserted bases.
Expand All @@ -46,7 +46,7 @@ public class IndelErrorMetric extends BaseErrorMetric {
* The (phred) rate of insertions.
*/
@NoMergingIsDerived
public int INSERTS_Q = 0;
public int INSERTIONS_Q = 0;

/**
* The number of deletions. Note: This is not the number of bases that have been deleted.
Expand Down

0 comments on commit 13f00e0

Please sign in to comment.