-
Notifications
You must be signed in to change notification settings - Fork 8
/
soap3-dp-builder.ini
68 lines (51 loc) · 1.6 KB
/
soap3-dp-builder.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#
# This is an ini file for BWTBuilderProt
#
[BuildTasks]
ParseFASTA=Y; # Parse FASTA file to build packed DNA File
# and Annotation File
BuildLookUp=Y; # Build Look-Up Tables from packed DNA
BuildBWT=Y; # Build BWT from packed DNA
BuildSaValue=Y; # Build SA value from BWT
BuildHOT=N; # Build High Occurrences Pattern Hash Table from BWT
[Display]
ShowProgress=N; # Display progress during long running tasks
[ParseFASTA]
RandomSeed=0; # random seed used for random substitution
[BuildBWT]
OccValueFreq=256; # Occ value sampling frequency;
TargetNBit=5; # Amount of memory to be used for building BWT
# in number of bits per input character
InitialMaxBuildSize=10000000; # Maximum build size in 1st iteration
IncMaxBuildSize=10000000; # Maximum build size in the following iterations
[BuildSaValue]
SaValueFreq=1; # SA value sampling frequency
[BuildSaIndex]
SaIndexNumOfChar=12;
[BuildLookUp]
TableSize=13;
[BuildHOT]
PatternLength=35;
OccurrencesThreshold=4;
[Database]
AnnotationFileName=*.index.ann;
AmbiguityFileName=*.index.amb;
PackedDNAFileName=*.index.pac;
BWTCodeFileName=*.index.bwt;
BWTOccValueFileName=*.index.fmv;
SaValueFileName=*.index.sa;
SaIndexFileName=*.index.sai;
RevPackedDNAFileName=*.index.rev.pac;
RevBWTCodeFileName=*.index.rev.bwt;
RevBWTOccValueFileName=*.index.rev.fmv;
LookupTableFileName=*.index.lkt;
RevLookupTableFileName=*.index.rev.lkt;
HighOccHashTableFileName=*.index.hot;
HighOccPatternFileName=*.index.ht;
HighOccFileName=*.index.hocc;
HighOccPackedFileName=*.index.hpac;
HighOccAuxValueFileName=*.index.hv;
TranslateFileName=*.index.tra;
#
# end of file
#