-
Notifications
You must be signed in to change notification settings - Fork 31
/
config.ini
41 lines (39 loc) · 1.18 KB
/
config.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
[connection]
database = typedb-bio
; Database name.
address = localhost:1729
; Server address and port.
server_type = CORE
; TypeDB server product in use, "CORE", "ENTERPRISE", or "CLOUD".
username = user
; Username for TypeDB Enterprise and Cloud.
tls_cert_path = path/to/tls/cert
; TLS certificate path for TypeDB Enterprise and Cloud.
[parsing]
; Leave an argument blank to parse all entries.
; Set an argument to 0 to parse no entries.
max_proteins =
; Maximum number of proteins to parse.
max_viruses =
; Maximum number of coronaviruses to parse.
max_pathways =
; Maximum number of pathway associations to parse.
max_diseases =
; Maximum number of diseases to parse.
max_drugs =
; Maximum number of drugs to parse.
max_drug_interactions =
; Maximum number of drug-gene interactions to parse.
max_tissues =
; Maximum number of tissues to parse.
max_publications =
; Maximum number of publications to parse.
max_protein_interactions =
; Maximum number of protein-protein interactions per tissue to parse.
[loading]
overwrite = false
; Overwrite existing database with the same name.
commit_batch = 50
; Number of insert queries per commit.
num_jobs = 8
; Maximum number of concurrently running jobs.