Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danfdeblasio committed Mar 2, 2016
1 parent 16c778e commit dc21f26
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion opal/realignment/realignmentDriver.java
Expand Up @@ -148,7 +148,11 @@ private char[][] realignWindow(int startIndex, int endIndex){
originalWindowSequences[i][j-startIndex] = Character.toUpperCase(sequence[i][j]);;
}
if(numberOfNonGaps[i] > 0) numberOfNonBlankSequences++;
realignmentIndexes += "("+stringStartChar+","+stringEndChar+");";
if(stringStartChar<stringEndChar){
realignmentIndexes += "("+stringStartChar+","+(stringEndChar-1)+");";
}else{
realignmentIndexes += "(--,--);";
}
}

char[][] windowSequences = new char[numberOfNonBlankSequences][];
Expand Down

0 comments on commit dc21f26

Please sign in to comment.