Skip to content

Commit

Permalink
Fix additional error from issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
ctSkennerton committed Mar 2, 2019
1 parent 258f029 commit ebeff9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPRUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static CRISPR getActualRepeatLength(CRISPR candidateCRISPR, int searchWin
{
if (candidateCRISPR.numRepeats() - 1 > minNumRepeats)
{
candidateCRISPR.removeRepeat(0);
candidateCRISPR.removeRepeat(candidateCRISPR.firstRepeat());
firstRepeatStartIndex = candidateCRISPR.repeatAt(0);
}
else
Expand Down

0 comments on commit ebeff9b

Please sign in to comment.