-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yml
61 lines (58 loc) · 1.67 KB
/
config.yml
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
default:
batchmode: false
assertions: true
cachedb: "sqlite"
cacheformat: "qs"
codechecks: true
delaystart: 0
dtthreads: 2
googleuser: ""
googleauthcache: ""
inputpaths: null
lowmemory: false
messagingNumCharsModule: 21
mpbsuitabilityindex: "R" ## one of "G", "S", "L", "R"
paths:
cachedir: "cache"
scratchdir: "/tmp/scratch/MPB"
plot: true
recoverymode: false
reproduciblealgorithm: 2
run: 1
slackchannel: ""
showsimilardepth: 3
usememoise: false
useprerun: true
userequire: true
production:
batchmode: true
codechecks: false
delaystart: !expr sample(5L:15L, 1) # 5-15 minute delay to stagger starts
plot: false
alex:
inherits: production
cachedb: !expr if (grepl("spades", Sys.info()[["nodename"]])) "sqlite" else "postgresql"
cacheformat: "qs"
googleuser: "[email protected]"
codechecks: true ## TODO: set false after all fixed
paths:
scratchdir: !expr if (grepl("forcast(01|02)", Sys.info()[["nodename"]])) "/mnt/scratch/MPB" else "/tmp/scratch/MPB"
slackchannel: "@alex.chubaty"
useprerun: !expr if (grepl("spades", Sys.info()[["nodename"]])) TRUE else FALSE
eliot:
inherits: default
assertions: false
cachedb: "sqlite"
cacheformat: "qs"
dtthreads: 1
googleuser: "[email protected]"
googleauthcache: ".secret"
codechecks: true ## TODO: set false after all fixed
paths:
scratchdir: !expr if (grepl("forcast(01|02)", Sys.info()[["nodename"]])) "/mnt/scratch/MPB" else "/tmp/scratch/MPB"
recoverymode: true
showsimilardepth: 6
slackchannel: "@eliotmcintire"
useprerun: !expr if (grepl("spades", Sys.info()[["nodename"]])) TRUE else FALSE
inputpaths: ~/data
usememoise: false