Skip to content

Commit

Permalink
ngsutilsj bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mbreese committed Mar 3, 2016
1 parent 5985f19 commit eb6ea4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified lib/ngsutilsj-0.3.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/java/io/compgen/cgsplice/cli/JunctionCount.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void setRetainedIntrons(boolean val) {
this.retainedIntrons = val;
}

@Option(desc="Reads must overlap the junction by at least {val} bases (default: 10)", name="min-overlap", defaultValue="10")
@Option(desc="Reads must overlap the junction by at least {val} bases", name="min-overlap", defaultValue="10")
public void setMinOverlap(int val) {
this.minOverlap = val;
}
Expand Down Expand Up @@ -127,7 +127,7 @@ public void exec() throws IOException {
}
writer.eol();

int readLength = ReadUtils.getReadLength(reader);
int readLength = ReadUtils.getSamReadLength(reader);
if (verbose) {
System.err.println("Read length: "+readLength);
}
Expand Down

0 comments on commit eb6ea4e

Please sign in to comment.