This file is indexed.

/usr/bin/circos is in circos 0.64-1.

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

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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
#!/usr/bin/env perl

=pod

=head1 NAME

                                    ____ _
                                   / ___(_)_ __ ___ ___  ___
                                  | |   | | '__/ __/ _ \/ __|
                                  | |___| | | | (_| (_) \__ \
                                   \____|_|_|  \___\___/|___/

                                                round is good

circos - generate circularly composited information graphics

=head1 SYNOPSIS

  circos -conf circos.conf [-silent] [-help] [-man]

  # detailed debugging for code components
  # see http://www.circos.ca/documentation/tutorials/configuration/debugging
  circos -debug_group GROUP1,[GROUP2,...]

  # configuration dump
  circos -cdump [BLOCK1/[BLOCK2/...]]

  # overriding configuration parameters
  circos -param image/radius=2000p -param ideogram/show=no

=head1 DESCRIPTION

Circos is a software package for visualizing data and information. It
visualizes data in a circular layout, which makes Circos ideal for
exploring relationships between objects or positions. There are other
reasons why a circular layout is advantageous, not the least being the
fact that it is attractive.

Circos is ideal for creating publication-quality infographics and
illustrations with a high data-to-ink ratio, richly layered data and
pleasant symmetries. You have fine control each element in the figure
to tailor its focus points and detail to your audience.

=head1 CONFIGURATION

Settings are meant to be passed using a plain-text configuration
file. This file can be created manually or by another script, which
allows Circos to be fully automated.

For full documentation, see

  L<http://www.circos.ca/documentation/tutorials>

=head2 Syntax

Configuration is plain-text and composed of hierarchical blocks. Some
blocks, such as C<<ideogram>> are mandatory, while others like
C<<backgrounds>> are optional. 

To get started, refer to the quick guide tutorial.

  L<http://www.circos.ca/documentation/tutorials/quick_guide>

A typical configuration file might look like this

  # image size and format 
  <image>
   ...
  </image>
 
  # position and size of ideograms
  <ideogram>
   ...
  </ideogram>

  # position, type and format of data tracks
  <plots>
   <plot>
     ...
   </plot>
   ...
  </plots>

  # colors, fonts and fill patterns
  <<include /usr/share/circos/etc/colors_fonts_patterns.conf>>

  # system parameters
  <<include /usr/share/circos/etc/housekeeping.conf>>

=head2 Modularity

The C<<<include FILE>>> directive imports one configuration file into another. This facility helps to keep configuration files modular.

Parameter definitions that do not frequently change, such as color and font definitions, are conventionally imported from files found in F<etc/> in the distribution.

In the tutorials, you'll find that the C<<ideogram>> and C<<ticks>> blocks are imported into the main configuration file. Because these blocks can get quite large, the main configuration file is more legible if they are relegated to separate files.

=head2 Overriding with *

To override a parameter that has been included from a file, use the C<*> suffix. The suffix is required because multiple definitions of a parameter are not allowed, except in cases where a parameter is may have more than one value.

  <image>
  # included file defines 'radius'
  <<include /usr/share/circos/etc/image.conf>>
  # this will override the radius value
  radius* = 2500p
  </image>

The C<*> suffix can be repeated to specify which value takes precedence in a block.

  radius = 1500p
  radius* = 2500p
  radius** = 3000p # this instance of radius will be used

=head2 Overriding with Command Line

Any configuration parameter in a unique block name can be specified on
the command line using

  -param PATH/PARAM=value

For example,

  # <ideogram>
  #   show = no
  #   ...
  # </ideogram>
  -param ideogram/show=no

  # <ideogram>
  #   <spacing>
  #     default = 0.01r
  #   </spacing>
  #   ...
  # </ideogram>
  -param ideogram/spacing/default=0.01r

Multiple parameters can be redefined, each with its own C<-param> flag

  -param show_ticks=no -param image/radius=2000p

=head2 Merging Blocks

Multiple instances of the following blocks are automatically merged: C<<ideogram>>, C<<colors>>, C<<fonts>>, C<<paterns>>, C<<image>>, C<<links>>, C<<plots>> and C<<highlights>>.

The purpose of this is to allow you to add to canonical definitions.

  # this file defines default <colors>, <fonts> and <patterns>
  <<include /usr/share/circos/etc/colors_fonts_patterns.conf>>

  # add to the colors block
  <colors>
  mycolor = 150,25,25
  </colors>

=head1 OPTIONS

=head2 Configuration

=over

=item -configfile FILE

Name of configuration file. This is required.

Circos will attempt to guess the location of this file, searching for
C<circos.conf> in C<.>, C<..>, and C<../..>.

=back

=head2 Output Format

=over

=item -png, -nopng

=item -svg, -nosvg

Toggles output of PNG and SVG files.

=back

=head2 Output Paths

=over 

=item -outputdir DIR

=item -outputfile FILE

Change the output directory and filename.

=back 

=head2 Debugging

=over

=item -debug LEVEL

Turn on debugging output.

=item -debug_group GROUP1,[GROUP2,...]

Turn on debugging output for specific groups. For a list of groups, see

  L<http://www.circos.ca/documentation/tutorials/configuration/debugging>

=item -silent 

Generate no reporting.

=back

=head2 Usage

=over

=item -version

Show the version.

=item -help

Show brief usage synopsis.

=item -man

Show man page.

=back

=cut

use strict;
use warnings;
use FindBin;
use Getopt::Long;
use Pod::Usage;

use lib "$FindBin::RealBin";
use lib "$FindBin::RealBin/../lib";
use lib "$FindBin::RealBin/lib";
use Circos;

use Circos::Debug;

my %OPT;
GetOptions(\%OPT,
					 'configfile=s',
					 'param=s@',
					 'cdump:s',
					 'cdebug',

					 'outputdir=s',
					 'outputfile=s',
					 'png!',
					 'svg!',
					 'imagemap',

					 'color_cache_rebuild',
					 'color_cache_static',
					 'randomcolor:s',

					 'help',
					 'man',
					 'silent',
					 'paranoid!',
					 'warnings!',
					 'fakeerror=s',
					 'debug+',
					 'debug_group=s',
					 'version',

					 'show_ticks!',
					 'show_tick_labels!',

#	   'chromosomes=s',
#	   'chromosomes_display_default!',
#	   'chromosomes_order=s',
#	   'chromosomes_scale=s',
#	   'chromosomes_radius=s',
#	   'usertext1=s',
#	   'usertext2=s',
#	   'usertext3=s',
#	   'usertext4=s',
#	   'tagname',
#	   'file_delim=s',
#	   'background=s',
#	   'image_map_name=s',
#	   'image_map_file=s',
#	   'image_map_use',
#	   'image_map_missing_parameter',

	  );

pod2usage()            if $OPT{'help'};
pod2usage(-verbose=>2) if $OPT{'man'};
#$OPT{debug_group} .= "conf" if $OPT{cdebug};
Circos->run(%OPT);

# -------------------------------------------------------------------

=pod

=head1 AUTHOR

Martin Krzywinski L<martink@bcgsc.ca> L<http://mkweb.bcgsc.ca>

=head1 RESOURCES

L<http://www.circos.ca>

=head1 CITING

If you are using Circos in a publication, please cite as

Krzywinski, M., J. Schein, I. Birol, J. Connors, R. Gascoyne,
D. Horsman, S. Jones, and M. Marra. 2009. Circos: an Information
Aesthetic for Comparative Genomics. Genome Res 19:1639-1645.

=head1 CONTRIBUTORS

Ken Youens-Clark L<kyclark@gmail.com>

=head1 SEE ALSO

Hive plots L<http://www.hiveplot.com>

=head1 COPYRIGHT & LICENSE

Copyright 2004-2012 Martin Krzywinski, all rights reserved.

This file is part of the Genome Sciences Centre Perl code base.

This script is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This script is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this script; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

=cut