Advertisement
jhangyu

Circos currently config

Jun 21st, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 3.81 KB | None | 0 0
  1. # 1.1 MINIMUM CIRCOS CONFIGURATION
  2. #
  3. # This is a 'hello world' Circos tutorial.
  4. #
  5. # Only required configuration elements are included.
  6. #
  7. # Subsequent tutorials in this section build on this example to
  8. # generate a representative image with common elements found in Circos
  9. # figures in the literature.
  10.  
  11. # Chromosome name, size and color definition
  12. karyotype = data/karyotype/karyotype.nile.tilapia.oreNil3.txt
  13.  
  14. # The <ideogram> block defines the position, size, labels and other
  15. # properties of the segments on which data are drawn. These segments
  16. # are usually chromosomes, but can be any integer axis.
  17.  
  18. <ideogram>
  19.  
  20. <spacing>
  21. # Spacing between ideograms. Suffix "r" denotes a relative value. It
  22. # is relative to circle circumference (e.g. space is 0.5% of
  23. # circumference).
  24. default = 0.005r
  25.  
  26. # You can increase the spacing between specific ideograms.
  27. <pairwise hsY;hs1>
  28. spacing = 20r
  29. </pairwise>
  30.  
  31. </spacing>
  32.  
  33. # Ideogram position, thickness and fill.
  34. #
  35. # Radial position within the image of the ideograms. This value is
  36. # usually relative ("r" suffix).
  37. radius           = 0.90r
  38.  
  39. # Thickness of ideograms, which can be absolute (e.g. pixels, "p"
  40. # suffix) or relative ("r" suffix). When relative, it is a fraction of
  41. # image radius.
  42. thickness        = 60p
  43.  
  44. # Ideograms can be drawn as filled, outlined, or both. When filled,
  45. # the color will be taken from the last field in the karyotype file,
  46. # or set by chromosomes_colors. Color names are discussed in
  47. #
  48. # http://www.circos.ca/documentation/tutorials/configuration/configuration_files
  49. #
  50. # When stroke_thickness=0p or if the parameter is missing, the ideogram is
  51. # has no outline and the value of stroke_color is not used.
  52.  
  53. fill             = yes  
  54. stroke_color     = dgrey
  55. stroke_thickness = 0p  
  56.  
  57. ## 设定 label 的显示
  58. # 设定是否显示 label 。 label 对应着 karyotype 文件的第 4 列。如果其值为 yes,则必须要有 label_radius 参数来设定 label 的位置,否则会报错并不能生成结果。
  59. show_label       = yes
  60. # 设定 label 的字体
  61. label_font       = futura_condense
  62. # 设定 label 的位置
  63. label_radius     = 1r+90p
  64. # 设定 label 的字体大小
  65. label_size       = 40
  66. # 设定 label 的字体方向,yes 是易于浏览的方向。
  67. label_parallel   = yes
  68.  
  69. </ideogram>
  70. <plots>
  71.     <plot>
  72.     type        = histogram
  73.     min         = 0
  74.     max         = 20
  75.     file        = plotfileinput.txt
  76.     r0          = 0.3r
  77.     r1          = 0.8r
  78.     color       = vvdblue
  79.     fill_color  = lgreen
  80.     thickness   = 12
  81.     </plot>
  82. </plots>
  83. ################################################################
  84. # The remaining content is standard and required. It is imported from
  85. # default files in the Circos distribution.
  86. #
  87. # These should be present in every Circos configuration file and
  88. # overridden as required. To see the content of these files,
  89. # look in etc/ in the Circos distribution.
  90. #
  91. # It's best to include these files using relative paths. This way, the
  92. # files if not found under your current directory will be drawn from
  93. # the Circos distribution.
  94. #
  95. # As always, centralize all your inputs as much as possible.
  96.  
  97. <image>
  98. # Included from Circos distribution.
  99. <<include etc/image.conf>>                
  100. </image>
  101.  
  102. # RGB/HSV color definitions, color lists, location of fonts, fill
  103. # patterns. Included from Circos distribution.
  104. #
  105. # In older versions of Circos, colors, fonts and patterns were
  106. # included individually. Now, this is done from a central file. Make
  107. # sure that you're not importing these values twice by having
  108. #
  109. # *** DO NOT DO THIS ***
  110. # <colors>
  111. # <<include etc/colors.conf>>
  112. # <colors>
  113. # **********************
  114. <<include etc/colors_fonts_patterns.conf>>
  115.  
  116. # Debugging, I/O an dother system parameters
  117. # Included from Circos distribution.
  118. <<include etc/housekeeping.conf>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement