-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.py
116 lines (103 loc) · 2.58 KB
/
config.py
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
'''
Config objects.
'''
import os
class Config(object):
"""Default configs"""
DEBUG = False
SEND_FILE_MAX_AGE_DEFAULT = 6
DATABASE_URI = 'mongodb://127.0.0.1:27017/'
HOST = '127.0.0.1'
PORT = 5000
# list of kwargs for DBSignatureCollection globals
DBSC_PARAMS = [
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '1.0'},
{"incorrect": {"$ne": True}},
]},
'name': 'v1.0', 'name_prefix': 'Manual'},
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '1.2'},
]},
'name': 'DM', 'name_prefix': 'DrugMatrix'
},
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '2.0'},
]},
'name': 'p1.0', 'name_prefix': 'Automatic'
}
]
# whether to generate files for downloading from DBSC instances
MAKE_DOWNLOAD_FILES = True
class ProductionConfig(Config):
DATABASE_URI = os.environ['DATABASE_URI']
HOST = '0.0.0.0'
class DevelopmentConfig(Config):
DEBUG = True
class TestingConfig(DevelopmentConfig):
DBSC_PARAMS = [
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '1.0'},
{"incorrect": {"$ne": True}},
{'id': {'$in': ['gene:27', 'gene:3046', 'gene:2981', 'gene:1829']}}
]},
'name': 'v1.0', 'name_prefix': 'Manual'},
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '1.2'},
{'id': {'$in': ['drug:DM0', 'drug:DM1', 'drug:DM10', 'drug:DM11', 'drug:DM12']}}
]},
'name': 'DM', 'name_prefix': 'DrugMatrix'
},
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '2.0'},
{'id': {'$in': ['gene:P9030', 'dz:P1814', 'drug:P2341']}}
]},
'name': 'p1.0', 'name_prefix': 'Automatic'
}
]
class SpeedTestingConfig(DevelopmentConfig):
'''
Used for speed test.
'''
DBSC_PARAMS = [
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '1.0'},
{"incorrect": {"$ne": True}},
{'id': {'$in': ['gene:27', 'gene:3046', 'gene:2981', 'gene:1829']}}
]},
'name': 'v1.0', 'name_prefix': 'Manual',
'limit': 300
},
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '1.2'},
{'id': {'$in': ['drug:DM0', 'drug:DM1', 'drug:DM10', 'drug:DM11', 'drug:DM12']}}
]},
'name': 'DM', 'name_prefix': 'DrugMatrix',
'limit': 100
},
{
'filter_': {'$and':[
{'chdir_sva_exp2': {'$exists': True}},
{'version': '2.0'},
{'id': {'$in': ['gene:P9030', 'dz:P1814', 'drug:P2341']}}
]},
'name': 'p1.0', 'name_prefix': 'Automatic',
'limit': 300
}
]