-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathExample_Settings.ini
74 lines (50 loc) · 1.44 KB
/
Example_Settings.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
69
70
71
72
73
# Benchmarking Config File for FTSearch
# Path to the input Query File
queryFile = "path_to_query_file.txt"
# size of kmer to search for
kmerSize = 30
# read length
readLength = 150
# Path to the index Props ini
indexPropsFile = "Index_MixedVirus_100_index.ini"
# Directory to save the results file
outputFolder = ""
# Query File has Ref or Ref&Alt sequences
refOnly = true
# Search type: CENTERED or SLIDING
searchType = SLIDING
# search for the reverse complement of each kmer
revCompSearch = true
# Count only once for paired reads
countAsPairs = false
# Ignore reads that map to multiple queries
uniqueReads = false
# Search using multiple threads
multithread = true
# Create a fastq file for each query that contains reads
# which match to that query
matchingReads = false
# overlap between kmers
overlap = 0
# return only those queries that have read matches
return_only_positive_matches = false
# stride of the sequence taken
stride = 5
# max occurences is the upper bound number of occurences for a sequence
maxOccurences = 100
# thread number is the number of threads to run the algorithm with
numOfThreads = 20
# ignore Kmers
ignoreNonUniqueKmers = true
ignoreOverCountedKmers = true
#output flagged kmers
outputNonUniqueKmers = true;
outputOverCountedKmers = true;
# crossover
crossover = false
#print search time
printSearchTime = false
#max Kmers Per Query
maxKmersPerQuery = 100000000
#max total kmers
maxTotalKmers = 1000000