Skip to content

Commit

Permalink
Changed option naming
Browse files Browse the repository at this point in the history
  • Loading branch information
richardmleggett committed May 6, 2016
1 parent 40ec3af commit 1eebe27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified dist/NanoOK.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions src/nanook/NanoOKOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void parseArgs(String[] args) {
System.out.println(" -a|-fasta specifies FASTA file extraction (default)");
System.out.println(" -q|-fastq specifies FASTQ file extraction");
System.out.println(" -basecallindex specifies the index of the analysis (default: latest)");
System.out.println(" -outputpath to output FAST5 path in FASTA read header");
System.out.println(" -printpath to output FAST5 path in FASTA read header");
System.out.println("");
System.out.println("align options:");
System.out.println(" -s|-sample <dir> specifies sample directory");
Expand Down Expand Up @@ -229,7 +229,7 @@ public void parseArgs(String[] args) {
processTemplateReads = false;
processComplementReads = false;
i++;
} else if (args[i].equalsIgnoreCase("-outputpath")) {
} else if (args[i].equalsIgnoreCase("-printpath")) {
outputFast5Path = true;
i++;
} else if (args[i].equalsIgnoreCase("-bitmaps")) {
Expand Down

0 comments on commit 1eebe27

Please sign in to comment.