~ubuntu-branches/ubuntu/quantal/genometools/quantal-backports

« back to all changes in this revision

Viewing changes to testdata/bigfonts.style

  • Committer: Package Import Robot
  • Author(s): Sascha Steinbiss
  • Date: 2012-07-09 14:10:23 UTC
  • Revision ID: package-import@ubuntu.com-20120709141023-juuu4spm6chqsf9o
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--[[
 
2
  This is the GenomeTools annotation viewer config file.
 
3
  All options must be set inside the 'style' table.
 
4
  All items in this table must be tables, called 'sections'.
 
5
  Typically there is one section per feature type.
 
6
 
 
7
  Color definitions
 
8
  -----------------
 
9
  Colors are given as RGB triplets
 
10
       {red=<val>,green=<val>,blue=<val>(,alpha=<val>)}
 
11
  where <val> is a decimal value between 0 and 1.
 
12
  The alpha value is optional, as a default 0.5 will be used.
 
13
 
 
14
  Global format settings
 
15
  ----------------------
 
16
  Global settings, such as margins, spacers, etc. are found at the end of this
 
17
  file, in the "format" section.
 
18
]]--
 
19
 
 
20
 
 
21
style =
 
22
{
 
23
  format =
 
24
  {
 
25
    -- Set the following three settings to 'false' to globally disable them.
 
26
    split_lines = true, -- generally enable splitting
 
27
    show_block_captions = true, -- generally show captions
 
28
    show_track_captions = true, -- generally show track captions
 
29
    margins = 30,      -- space left and right of diagram, in pixels
 
30
    bar_height = 16,   -- height of a feature bar, in pixels
 
31
    bar_vspace = 10,   -- space between feature bars, in pixels
 
32
    track_vspace = 20, -- space between tracks, in pixels
 
33
    ruler_font_size = 10, -- size of scale labels
 
34
    ruler_space = 20, -- space between ruler and first track
 
35
    block_caption_font_size = 19, -- size of block captions
 
36
    block_caption_space = 7, -- space between blocks and their captions
 
37
    track_caption_font_size = 8, -- size of track captions
 
38
    track_caption_space = 7, -- space between tracks and their captions
 
39
    scale_arrow_width = 6,     -- width of scale arrowheads, in pixels
 
40
    scale_arrow_height = 10,   -- height of scale arrowheads, in pixels
 
41
    arrow_width = 6,   -- width of feature arrowheads, in pixels
 
42
    stroke_width = .5, -- width of outlines, in pixels
 
43
    stroke_marked_width = 1.5, -- width of outlines for marked elements, in pixels
 
44
    show_grid = true, -- shows light vertical lines for orientation
 
45
    min_len_block = 20 , -- minimum length of a block in which single elements are shown
 
46
    track_title_color     = {red=0.7, green=0.7, blue=0.7, alpha = 1.0},
 
47
    default_stroke_color  = {red=0.1, green=0.1, blue=0.1, alpha = 1.0},
 
48
    background_color      = {red=1.0, green=1.0, blue=1.0, alpha = 1.0},
 
49
  },
 
50
}