Skip to content

Commit

Permalink
"Copy read details" issue #1604
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Oct 21, 2024
1 parent 2ed14fc commit 20da885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/broad/igv/sam/SAMAlignment.java
Original file line number Diff line number Diff line change
Expand Up @@ -692,8 +692,8 @@ public String getAlignmentValueString(double position, int mouseX, AlignmentTrac
buf.append("Dist: " + getClusterDistance() + "<br>");
}

boolean hideSmallIndels = renderOptions.isHideSmallIndels();
int smallIndelThreshold = renderOptions.getSmallIndelThreshold();
boolean hideSmallIndels = renderOptions == null ? false : renderOptions.isHideSmallIndels();
int smallIndelThreshold = renderOptions == null ? 0 : renderOptions.getSmallIndelThreshold();

boolean atInsertion = false;
boolean atBaseMod = false;
Expand Down

0 comments on commit 20da885

Please sign in to comment.