-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
97 lines (97 loc) · 2.64 KB
/
config.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"port": 3000,
"databases": [
{
"name": "T3/Wheat",
"address": "https://wheat.triticeaetoolbox.org/brapi/v1",
"version": "v1.3",
"call_limit": 10
},
{
"name": "T3/Oat",
"address": "https://oat.triticeaetoolbox.org/brapi/v1",
"version": "v1.3",
"call_limit": 10
},
{
"name": "T3/Barley",
"address": "https://barley.triticeaetoolbox.org/brapi/v1",
"version": "v1.3",
"call_limit": 10
},
{
"name": "Cassavabase",
"address": "https://cassavabase.org/brapi/v1",
"version": "v1.3",
"call_limit": 10
},
{
"name": "USDA-GRIN Wheat",
"address": "https://npgsweb.ars-grin.gov/gringlobal/brapi/v2",
"params": {
"commoncropname": "WHEAT"
},
"version": "v2.0",
"call_limit": 10
},
{
"name": "USDA-GRIN Oat",
"address": "https://npgsweb.ars-grin.gov/gringlobal/brapi/v2",
"params": {
"commoncropname": "OAT"
},
"version": "v2.0",
"call_limit": 10
},
{
"name": "USDA-GRIN Barley",
"address": "https://npgsweb.ars-grin.gov/gringlobal/brapi/v2",
"params": {
"commoncropname": "BARLEY"
},
"version": "v2.0",
"call_limit": 10
}
],
"cache": {
"base": "_cache",
"name": "servers",
"duration": 1209600000,
"memory": true,
"persist": true,
"auto_update": "* * 2 * * 0",
"chunk_size": 50000
},
"search": {
"database_terms": {
"name": true,
"synonyms": true,
"accession_numbers": true
},
"search_routines": {
"exact": true,
"punctuation": false,
"accents": false,
"substring": false,
"prefix": false,
"edit_distance": false
},
"search_routine_options": {
"substring": {
"substring_length_min": 3
},
"prefix": {
"prefixes": [],
"find_db_prefixes": true,
"prefix_length_min": 2,
"prefix_length_max": 5,
"threshold": 250
},
"edit_distance": {
"max_edit_distance": 2
}
},
"return_records": false,
"case_sensitive": false
}
}