Skip to content

Commit 4a7e5a1

Browse files
committed
Updated default shingleLength to 31.
1 parent b52b575 commit 4a7e5a1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ It would produce output like:
8484
> INFO: PCJ version 5.3.3-831a4fa (2023-10-10T14:35:07.064+0200)
8585
> maj 22, 2024 12:33:41 PM org.pcj.internal.InternalPCJ start
8686
> INFO: Starting pl.edu.icm.heap.kite.PcjMain with 1 thread (on 1 node)...
87-
> [2024-05-22 12:33:41,806] shingleLength = 18
87+
> [2024-05-22 12:33:41,806] shingleLength = 31
8888
> [2024-05-22 12:33:41,807] gzipBuffer = 512
8989
> [2024-05-22 12:33:41,807] readerBuffer = 512
9090
> [2024-05-22 12:33:41,808] processingBuffer = 64
@@ -111,7 +111,7 @@ The following tables show the names of the parameters with their default values
111111
112112
| parameter name | default value | description |
113113
|-------------------|:-------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
114-
| shingleLength | 18 | list of comma separated values for K-mer length (e.g. `18` or `30,32`) |
114+
| shingleLength | 31 | list of comma separated values for K-mer length (e.g. `18` or `30,32`) |
115115
| outputHpvCount | 3 | maximum number of HPV viruses that match index is returned; if non-positive - return results for all HPV viruses from the database |
116116
| hpvVirusesPath | _bundled_ | path to the FASTA files with HPV viruses database; if not provided, the application will use embedded database |
117117
| filesGroupPattern | "" (_empty string_) | regular expression pattern to group results from multiple input files; _empty string_ means not to group results |

src/main/java/pl/edu/icm/heap/kite/PcjMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static void main(String[] args) throws IOException {
6767
}
6868

6969
ExecutionBuilder builder = PCJ.executionBuilder(PcjMain.class)
70-
.addProperty("shingleLength", System.getProperty("shingleLength", "" + (18)))
70+
.addProperty("shingleLength", System.getProperty("shingleLength", "" + (31)))
7171
.addProperty("gzipBuffer", System.getProperty("gzipBuffer", "" + (512)))
7272
.addProperty("readerBuffer", System.getProperty("readerBuffer", "" + (512)))
7373
.addProperty("processingBuffer", System.getProperty("processingBuffer", "" + (64)))

0 commit comments

Comments
 (0)