~ubuntu-branches/ubuntu/utopic/circos/utopic-proposed

« back to all changes in this revision

Viewing changes to etc/housekeeping.conf

  • Committer: Package Import Robot
  • Author(s): Olivier Sallou, Olivier Sallou, Charles Plessy, Andreas Tille
  • Date: 2012-06-14 12:56:33 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120614125633-0wh7ovv69s5k1uiq
Tags: 0.61-1
[ Olivier Sallou ]
* New upstream release

[ Charles Plessy ]
* renamed debian/upstream-metadata.yaml to debian/upstream

[ Andreas Tille ]
* debian/upstream: enhanced citation information 

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
debug           = no
13
13
warnings        = no
14
14
imagemap        = no
 
15
paranoid        = yes
15
16
 
16
 
units_ok = bupr
17
 
units_nounit = n
 
17
units_ok        = bupr
 
18
units_nounit    = n
18
19
 
19
20
# \t  tab
20
21
# \s  any whitespace
21
22
file_delim = \s
 
23
# collapse adjacent whitespace 
 
24
# e.g. two spaces are treated as one, not as a missing field
 
25
file_delim_collapse = yes
22
26
 
23
27
# Record delimiter for parameter values that are lists, such as
24
28
# hs1:0.25;hs2:0.10. By default, both ; and , are accepted
29
33
# Field delimiter specifies the assignment operator, e.g. 
30
34
list_field_delim  = \s*[:=]\s*
31
35
 
 
36
# Rule fields and other parameters accept var(VARIABLE) syntax
 
37
# to reference parameters of data points. By default, if
 
38
# VARIABLE does not exist, Circos quits with an error, unless
 
39
# the skip parameter below is set.
 
40
 
41
# This feature is useful when you have data that don't always
 
42
# have the same options. For example,
 
43
 
44
# chr1 10 20 a=10
 
45
# chr1 50 60 b=10
 
46
skip_missing_expression_vars = no
 
47
 
32
48
# Magnification factor for text in SVG files.
33
49
svg_font_scale = 1.3
34
50
 
 
51
# default font - pick one of the keys from <fonts> block
 
52
default_font   = default
 
53
# default font name is used for SVG files for cases where
 
54
# the font definition does not include a name
 
55
# see etc/fonts.conf for details
 
56
default_font_name  = Arial
 
57
default_font_color = black
 
58
 
 
59
# default color for cases when color is not specified
 
60
default_color  = black
 
61
 
 
62
<guides>
 
63
thickness      = 1
 
64
size           = 5
 
65
<object>
 
66
all            = no
 
67
ideogram       = no
 
68
ideogram_label = no
 
69
</object>
 
70
<color>
 
71
default = lblue
 
72
text    = red
 
73
</color>
 
74
</guides>
 
75
 
35
76
# Receive debug messages about actions
36
77
37
78
# Comma-separated list of one or more of the following
64
105
# parameters passed to functions can be
65
106
# validated to check consistency. turn this
66
107
# off to speed things up
67
 
debug_validate       = no
 
108
debug_validate       = yes
 
109
 
 
110
# Reformat numbers in debug output for consistency.
 
111
# If you have a lot of debug output (e.g. -debug_group _all)
 
112
# this will slow things considerably.
 
113
debug_output_tidy    = no
68
114
 
69
115
# pixel sub-sampling for text tracks
70
116
text_pixel_subsampling = 1
71
117
# array or span - use 'span' if applying snuggle refinement
72
118
text_snuggle_method    = array
73
119
 
 
120
# restrict names of parameters?
 
121
# if 'yes' then only certain named parameters are allowed within
 
122
# blocks and option fields for data
 
123
#
 
124
# if 'no' then you can define parameters with any name what-so-ever,
 
125
# useful if you wish to define states or labels for your data
 
126
#
 
127
# e.g. hs1 10 20 0.5 paired=yes,special=no,myvar=0.5
 
128
#
 
129
# ordinarily, 'paired', 'special' and 'myvar' would not be allowed
 
130
restrict_parameter_names = yes
 
131
 
 
132
# The location of configuration and data files will be guessed if 
 
133
# (a) configuration file is not specified
 
134
# (b) data file paths are relative
 
135
# Circos will look in the following locations, where 
 
136
# SCRIPTPATH is the location of the 'circos' script (e.g. /usr/local/bin) and
 
137
# CWD is the current directory (where the 'circos' command was executed).
 
138
# All paths under CWD will be scanned first, then under SCRIPTPATH.
 
139
#
 
140
# {CWD,SCRIPTPATH}/.
 
141
# {CWD,SCRIPTPATH}/..
 
142
# {CWD,SCRIPTPATH}/etc/
 
143
# {CWD,SCRIPTPATH}/../etc
 
144
# {CWD,SCRIPTPATH}/../../etc
 
145
# {CWD,SCRIPTPATH}/data
 
146
# {CWD,SCRIPTPATH}/../data
 
147
# {CWD,SCRIPTPATH}/../../data
 
148
#
 
149
# If you would like to prepend this list with custom directories for
 
150
# data files, enter them as a CSV list here
 
151
# data_path = /home/martink/circos-tutorials 
 
152
 
 
153
# If the cache is static, it will always be used and will not be updated
 
154
# unless it is deleted (use -color_cache_rebuild on the command line).
 
155
# Otherwise, the cache will be updated if 
 
156
#  - config file is newer than cache file
 
157
#  - list of colors in config file is different than in cache file
 
158
color_cache_static = no
 
159
color_cache_file   = circos.colorlist
 
160
# if the directory is not defined, then the system will guess a temporary
 
161
# directory compatible with your operating system (using File::Temp)
 
162
# color_cache_dir    = /tmp
 
163
 
 
164
# Make some functions faster. This should always be 'yes' unless you
 
165
# want things to run slowly or suspect deep issues.
 
166
memoize = yes
 
167
 
 
168
# This is a debugging flag and should be set to 'no' for regular use
 
169
quit_on_dump = yes
 
170
 
 
171
# Number of iterations for determining ideogram sizes when
 
172
# relative scale is used.
 
173
relative_scale_iterations = 10
 
174
 
 
175
# min, max, average, mode - based on scale statistics of ALL ideograms
 
176
# minadj, maxadj, averageadj, modeadj - based on scale statistics of adjacent ideograms
 
177
 
178
# You can specify a fixed scale for spacing using a floating value
 
179
#
 
180
# e.g. relative_scale_spacing = 1.5
 
181
relative_scale_spacing    = mode
 
182
 
 
183
# What to do with out-of-range data. Either 'clip' or 'hide'
 
184
data_out_of_range = clip
 
185
 
 
186
# Track default directory
 
187
track_defaults = etc/tracks
 
188
 
 
189
# Use anti aliasing, where possible? I've seen bugs in some gd libraries
 
190
# that cause artefacts to appear when lines are anti-aliased. If your
 
191
# image contains unexpected elements, turn aa off.
 
192
anti_aliasing = no
74
193