• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..21-Feb-2021-

MakefileH A D21-Feb-20211.2 KiB5540

README.mdH A D21-Feb-20211.2 KiB2518

fastCover.cH A D21-Feb-202127.5 KiB810589

fastCover.hH A D21-Feb-20213.2 KiB5828

main.cH A D21-Feb-20216.5 KiB184131

test.shH A D03-May-2022760 1614

README.md

1FastCover Dictionary Builder
2
3### Permitted Arguments:
4Input File/Directory (in=fileName): required; file/directory used to build dictionary; if directory, will operate recursively for files inside directory; can include multiple files/directories, each following "in="
5Output Dictionary (out=dictName): if not provided, default to fastCoverDict
6Dictionary ID (dictID=#): nonnegative number; if not provided, default to 0
7Maximum Dictionary Size (maxdict=#): positive number; in bytes, if not provided, default to 110KB
8Size of Selected Segment (k=#): positive number; in bytes; if not provided, default to 200
9Size of Dmer (d=#): either 6 or 8; if not provided, default to 8
10Number of steps (steps=#): positive number, if not provided, default to 32
11Percentage of samples used for training(split=#): positive number; if not provided, default to 100
12
13
14###Running Test:
15make test
16
17
18###Usage:
19To build a FASTCOVER dictionary with the provided arguments: make ARG= followed by arguments
20If k or d is not provided, the optimize version of FASTCOVER is run.
21
22### Examples:
23make ARG="in=../../../lib/dictBuilder out=dict100 dictID=520"
24make ARG="in=../../../lib/dictBuilder in=../../../lib/compress"
25