-
Notifications
You must be signed in to change notification settings - Fork 5
/
bwtformatdb_minimal.ini
45 lines (36 loc) · 1.1 KB
/
bwtformatdb_minimal.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
#
# This is an ini file for BWTFormatdb
#
# Minimal memory profile
[BuildTasks]
ParseFASTA=Y; # Parse FASTA file to build packed DNA File
# and Annotation File
BuildBWT=Y; # Build BWT from packed DNA
BuildSaValue=Y; # Build SA value from BWT
BuildSaIndex=N; # Build SA index
[Display]
ShowProgress=Y; # Display progress during long running tasks
[ParseFASTA]
RandomSeed=0; # random seed used for random substitution
# 0 - use system time as random seed
[BuildBWT]
OccValueFreq=256; # Occ value sampling frequency;
TargetNBit=2.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=64; # SA value sampling frequency
[BuildSaIndex]
SaIndexNumOfChar=12;
[Database]
AnnotationFileName=*.ann;
AmbiguityFileName=*.amb;
PackedDNAFileName=*.pac;
BWTCodeFileName=*.bwt;
FMIOccValueFileName=*.fmv;
SaValueFileName=*.sa64;
SaIndexFileName=*.sai;
#
# end of file
#