Skip to content

Commit

Permalink
Upped to version 2.23.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmose committed Sep 14, 2020
1 parent 7b79be3 commit fe7ea29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/abra/JunctionUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public static JunctionSequence getSequenceForJunctions(List<Feature> junctions,
String rightSeq = c2r.getSequence(chromosome, rightStart, rightStop-rightStart);
juncSeq.append(rightSeq);
// Junction pos and length should already be added
if (juncSeq.length() > ReAligner.MAX_REF_REGION_LEN) {
if (juncSeq.length() > NativeSemiGlobalAligner.MAX_REF_LEN) {
// Make sure we don't blow up the hardcoded size C matrix
Logger.warn("Junction Ref Seq to long: " + juncSeq.toString());

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/abra/NativeSemiGlobalAligner.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public class NativeSemiGlobalAligner {
private int gapOpen = -48;
private int gapExtend = -1;

private static final int MAX_CONTIG_LEN = 1998;
private static final int MAX_REF_LEN = 4998;
public static final int MAX_CONTIG_LEN = 1998;
public static final int MAX_REF_LEN = 4998;

public NativeSemiGlobalAligner(int match, int mismatch, int gapOpen, int gapExtend) {
this.match = match;
Expand Down

0 comments on commit fe7ea29

Please sign in to comment.