This file is indexed.

/usr/share/genometools/gtdata/sketch/default.style is in genometools-common 1.5.1-2ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
--[[
  This is the GenomeTools annotation viewer config file.
  All options must be set inside the 'style' table.
  All items in this table must be tables, called 'sections'.
  Typically there is one section per feature type.

  Color definitions
  -----------------
  Colors are given as RGB triplets
       {red=<val>,green=<val>,blue=<val>(,alpha=<val>)}
  where <val> is a decimal value between 0 and 1.
  The alpha value is optional, as a default 0.5 will be used.

  Global format settings
  ----------------------
  Global settings, such as margins, spacers, etc. are found at the end of this
  file, in the "format" section.
]]--


style =
{
  gene = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.9, green=0.9, blue=1.0},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = false,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  mRNA = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.4, green=0.5, blue=0.6},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = false,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  exon = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.6, green=0.6, blue=0.9},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = true,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  CDS = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.9, green=0.9, blue=0.2},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = true,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  TF_binding_site = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.8, green=0.6, blue=0.6},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = false,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  intron = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=1.0, green=1.0, blue=1.0},
    style              = "caret",
    -- Collapsing options
    collapse_to_parent = true,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  repeat_region = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.8, green=0.3, blue=0.3},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = false,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = 0,
  },
--------------------------------------
  LTR_retrotransposon = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.8, green=0.5, blue=0.5},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = false,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  long_terminal_repeat = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.9, green=0.9, blue=0.4},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = true,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
  target_site_duplication = {
    max_show_width = 0,
  },
--------------------------------------
    protein_match = {
    -- Color definitions
    stroke             = {red=0.0, green=0.0, blue=0.0, alpha = 1.0},
    stroke_marked      = {red=1.0, green=0.0, blue=0.0},
    fill               = {red=0.1, green=0.1, blue=0.5},
    style              = "box",
    -- Collapsing options
    collapse_to_parent = true,
    split_lines        = true,
    -- Caption options
    max_capt_show_width= nil,
    -- Display this track only if the viewport is not wider than this
    -- number of nucleotides. Set to 0 to disable type track.
    max_show_width     = nil,
  },
--------------------------------------
  five_prime_cis_splice_site = {
    collapse_to_parent = true,
  },
--------------------------------------
  five_prime_splice_site = {
    collapse_to_parent = true,
  },
--------------------------------------
  three_prime_cis_splice_site = {
    collapse_to_parent = true,
  },
--------------------------------------
  three_prime_splice_site = {
    collapse_to_parent = true,
  },
--------------------------------------
  expressed_sequence_match = {
    fill               = {red=0.2, green=0.2, blue=0.8},
    max_show_width     = 10000,
    max_num_lines      = 10,
    max_capt_show_width= 5000,
  },
--------------------------------------
  binding_site = {
    fill               = {red=0.7, green=0.2, blue=0.8},
    max_show_width     = 10000,
    max_num_lines      = 10,
    max_capt_show_width= 10000,
  },
--------------------------------------
  SNP = {
    fill               = {red=0.1, green=0.8, blue=0.8},
    max_show_width     = 10000,
    max_num_lines      = 10,
    max_capt_show_width= 10000,
  },
--------------------------------------
  deletion = {
    fill               = {red=0.1, green=0.8, blue=0.8},
    max_show_width     = nil,
    max_num_lines      = 10,
    max_capt_show_width= 10000,
  },
--------------------------------------
  chromosome = {
    fill               = {red=0.1, green=0.8, blue=0.8},
    max_show_width     = nil,
    max_num_lines      = 10,
  },
--------------------------------------
  substitution = {
    fill               = {red=1.0, green=0.1, blue=0.05},
    max_show_width     = 10000,
    max_num_lines      = 10,
    max_capt_show_width= 1000,
  },
--------------------------------------
  BED_feature = {
    fill               = {red=0.0, green=0.1, blue=0.0},
    style              = "box",
  },
--------------------------------------
  BED_thick_feature = {
    fill               = {red=0.0, green=0.5, blue=0.0},
    style              = "box",
    collapse_to_parent = true,
  },
--------------------------------------
  BED_block = {
    fill               = {red=0.0, green=1.0, blue=0.0},
    style              = "box",
    collapse_to_parent = true,
  },
--------------------------------------
  GC_content = {
    -- this is for a custom track
    stroke             = {red=0.2, green=0.2, blue=1.0, alpha = 0.4},
  },
--------------------------------------
  -- Defines various format options for drawing.
  format =
  {
    -- Set the following three settings to 'false' to globally disable them.
    split_lines = true, -- generally enable splitting
    show_block_captions = true, -- generally show captions
    show_track_captions = true, -- generally show track captions
    margins = 30,      -- space left and right of diagram, in pixels
    bar_height = 16,   -- height of a feature bar, in pixels
    bar_vspace = 10,   -- space between feature bars, in pixels
    track_vspace = 15, -- space between tracks, in pixels
    ruler_font_size = 8, -- size of scale labels
    ruler_space = 20, -- space between ruler and first track
    block_caption_font_size = 8, -- size of block captions
    block_caption_space = 7, -- space between blocks and their captions
    track_caption_font_size = 8, -- size of track captions
    track_caption_space = 7, -- space between tracks and their captions
    arrow_width = 6,   -- width of feature arrowheads, in pixels
    stroke_width = .5, -- width of outlines, in pixels
    unit = "bp",       -- basepair unit, e.g. "bp"
    ruler_left_text = "5'",  -- text left of the ruler axis
    ruler_right_text = "3'", -- text right of the ruler axis
    stroke_marked_width = 1.5, -- width of outlines for marked elements, in pixels
    show_grid = true, -- shows light vertical lines for orientation
    min_len_block = 20 , -- minimum length of a block in which single elements are shown
    track_title_color     = {red=0.7, green=0.7, blue=0.7, alpha = 1.0},
    default_stroke_color  = {red=0.1, green=0.1, blue=0.1, alpha = 1.0},
    background_color      = {red=1.0, green=1.0, blue=1.0, alpha = 1.0},
  },
}