-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsettings.ini.example
55 lines (38 loc) · 1.83 KB
/
settings.ini.example
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
[DATABASE]
# Set host here or set environment variable COBRADB_POSTGRES_HOST
postgres_host = localhost
# Set port here or set environment variable COBRADB_POSTGRES_PORT
postgres_port = 5432
# Set user here or set environment variable COBRADB_POSTGRES_USER
postgres_user = user
# Set password here or set environment variable COBRADB_POSTGRES_PASSWORD
postgres_password =
# Set database here or set environment variable COBRADB_POSTGRES_DATABASE
postgres_database = cobradb
# Set test database here or set environment variable
# COBRADB_POSTGRES_TEST_DATABASE
postgres_test_database = cobradb_test
[DATA]
# The directory containing the genome-scale models
model_directory = ~/path/to/cobradb_data/models
# The directory containing the reference sequences (as Genbank files)
refseq_directory = ~/path/to/cobradb_data/refseq
# A tab-delimited text file containing models, reference sequences, and
# publication IDs
model_genome = ~/path/to/cobradb_data/model-genome.txt
# A tab-delimited text file containing compartment IDs and their corresponding
# names
compartment_names = ~/path/to/cobradb_data/compartment-names.txt
reaction_hash_prefs = ~/path/to/cobradb_data/reaction-hash-prefs.txt
# A tab-delimited text file where column 1 is the preferred metabolite ID and
# the following columns are duplicates.
metabolite_duplicates = ~/path/to/ome_data/metabolite-duplicates.txt
data_source_preferences = ~/path/to/cobradb_data/annotation/data-source-prefs.txt
# This file should be a tab-delimited text file where each row contains an
# original gene_reaction_rule followed by a tab and a fixed
# gene_reaction_rule.
gene_reaction_rule_prefs = ~/path/to/cobradb_data/gene-reaction-rule-prefs.txt
metabolite_duplicates = ~/path/to/ome_data/metabolite-duplicates.txt
[EXECUTABLES]
# Optionally provide a Java executable for running ModelPolisher
java = /bin/java