-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
131 lines (108 loc) · 2 KB
/
config.toml
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# This directory will host the data files
store = "~/.genescape"
# A versioned directory for the data files
tag = "v1.0.0"
# Minimum count
MINCOUNT = ""
# Default pattern in the interface
PATTERN = ''
# The title of the page
PAGE_TITLE = "GeneScape"
# The width of the sidebar
SIDEBAR_WIDTH = 300
# The background color of the sidebar
SIDEBAR_BG = "#f8f8f8"
# Default gene list.
GENE_LIST = """
CEACAM20
INPP5D
O60431
Q8IUC4
Q9UJF2
NEUROD2
O95905
ONECUT2
Q14119
P49459
POLK
UVRAG
"""
# A listing of the files used by GeneScape
[[files]]
target = "human.index.gz"
type = "index"
label = "Human"
code = "human"
package = 'genescape.data'
[[files]]
target = "mouse.index.gz"
type = "index"
label = "Mouse"
code = "mouse"
package = 'genescape.data'
[[files]]
target = "rat.index.gz"
type = "index"
label = "Rat"
code = "rat"
package = 'genescape.data'
[[files]]
target = "fly.index.gz"
type = "index"
label = "Fruitfly"
code = "fly"
package = 'genescape.data'
[[files]]
target = "zebrafish.index.gz"
type = "index"
label = "Zebrafish"
code = "zfish"
package = 'genescape.data'
[[files]]
target = "worm.index.gz"
type = "index"
label = "Worm"
code = "worm"
package = 'genescape.data'
[[files]]
target = "ecoli.index.gz"
type = "index"
label = "E.Coli"
code = "ecoli"
package = 'genescape.data'
[[files]]
target = "yeast.index.gz"
type = "index"
label = "Yeast"
code = "yeast"
package = 'genescape.data'
[[files]]
target = "arabidopsis.index.gz"
type = "index"
label = "Arabidopsis"
code = "arabidopsis"
package = 'genescape.data'
[[files]]
target = "go-basic.obo.gz"
package = "genescape.data"
[[files]]
target = "goa_human.gaf.gz"
package = "genescape.data"
[[files]]
target = "test_goids.txt"
package = "genescape.data"
[[files]]
target = "test_genes.txt"
package = "genescape.data"
[[files]]
target = "genescape.js"
subdir = ["js"]
package = "genescape.data.js"
[[files]]
target = "viz-standalone.js"
subdir = ["js"]
package = "genescape.data.js"
[[files]]
target = "genescape.css"
subdir = ["css"]
package = "genescape.data.css"