[med-svn] [Git][med-team/circos][master] Update paths

Nilesh Patra gitlab at salsa.debian.org
Sun Jun 7 19:01:33 BST 2020



Nilesh Patra pushed to branch master at Debian Med / circos


Commits:
53402cb0 by Nilesh Patra at 2020-06-07T23:31:18+05:30
Update paths

- - - - -


1 changed file:

- debian/patches/fix_config_path.patch


Changes:

=====================================
debian/patches/fix_config_path.patch
=====================================
@@ -7,7 +7,7 @@ Comment: May be it would be better to do in d/rules some
 
 --- a/bin/circos
 +++ b/bin/circos
-@@ -143,10 +143,10 @@ A typical configuration file might look
+@@ -143,10 +143,10 @@
    </plots>
  
    # colors, fonts and fill patterns
@@ -20,7 +20,7 @@ Comment: May be it would be better to do in d/rules some
  
  =head2 Modularity
  
-@@ -168,12 +168,12 @@ Parameter definitions that do not freque
+@@ -168,12 +168,12 @@
  
    # image size, output file name
    <image>
@@ -36,7 +36,7 @@ Comment: May be it would be better to do in d/rules some
  
  =head2 Overriding with *
  
-@@ -181,7 +181,7 @@ To override a parameter that has been in
+@@ -181,7 +181,7 @@
  
    <image>
    # included file defines 'radius'
@@ -45,7 +45,7 @@ Comment: May be it would be better to do in d/rules some
    # this will override the radius value
    radius* = 2500p
    </image>
-@@ -248,7 +248,7 @@ Multiple instances of the following bloc
+@@ -248,7 +248,7 @@
  The purpose of this is to allow you to add to canonical definitions.
  
    # this file defines default <colors>, <fonts> and <patterns>
@@ -54,7 +54,7 @@ Comment: May be it would be better to do in d/rules some
  
    # add to the colors block
    <colors>
-@@ -315,7 +315,7 @@ Users who are unaware of this feature of
+@@ -315,7 +315,7 @@
  
  If you want to redefine the search paths, see the C<data_path> parameter in C<etc/housekeeping.conf> in the distribution directory, or overide it in your configuration file
  
@@ -69,23 +69,23 @@ Comment: May be it would be better to do in d/rules some
  
  <colors>
 -<<include etc/colors.conf>>
-+<<include colors.conf>>
++<<include /etc/circos/colors.conf>>
  </colors>
  
  <fonts>
 -<<include etc/fonts.conf>>
-+<<include fonts.conf>>
++<<include /etc/circos/fonts.conf>>
  </fonts>
  
  <patterns>
 -<<include etc/patterns.conf>>
 -</patterns>
 \ No newline at end of file
-+<<include patterns.conf>>
++<<include /etc/circos/patterns.conf>>
 +</patterns>
 --- a/etc/gddiag.conf
 +++ b/etc/gddiag.conf
-@@ -18,6 +18,6 @@ marginy = 10
+@@ -18,6 +18,6 @@
  
  output_file_root  = gddiag
  
@@ -106,7 +106,7 @@ Comment: May be it would be better to do in d/rules some
  # </colors>
 --- a/lib/Circos/Error.pm
 +++ b/lib/Circos/Error.pm
-@@ -129,7 +129,7 @@ $ERROR{configuration} =
+@@ -129,7 +129,7 @@
  	 no_debug_group=>"You asked for debug group [%s] using -debug_group. This group is not defined. Please use one of\n\n[%s]\n\nTo request all groups, use -debug_group _all.",
  	 deprecated =>"The configuration syntax [%s] is deprecated and no longer supported. Instead, use [%s].",
  	 no_such_conf_item => "You attempted to reference a configuration parameter using %s, but no parameter was found at the configuration file position %s.\n\nTo reference a parameter in another block, provide the full block path, such as conf(ideogram,spacing,default). In general, conf(block1,block2,...,blockn,parameter).\n\nTo reference the first defined parameter above the block in which conf() is called, use conf(.,parameter).",
@@ -115,3 +115,193 @@ Comment: May be it would be better to do in d/rules some
     multi_word_key => "Your parameter [%s] contains a white space. This is not allowed. You either forgot a '=' in assignment (e.g. 'red 255,0,0' vs 'red = 255,0,0') or used a multi-word parameter name\n (e.g. 'my red = 255,0,0' vs 'my_red = 255,0,0'",
     missing => "file(error/configuration.missing.txt)",
     bad_parameter_type => "You attempted to reference a configuration parameter group with name [%s], but it is not defined",
+--- a/example/etc/karyotype.and.layout.conf
++++ b/example/etc/karyotype.and.layout.conf
+@@ -1,5 +1,5 @@
+ 
+-karyotype = data/karyotype/karyotype.human.txt,data/karyotype/karyotype.mouse.txt,data/karyotype/karyotype.rat.txt
++karyotype = /usr/share/doc/circos/examples/data/karyotype/karyotype.human.txt,/usr/share/doc/circos/examples/data/karyotype/karyotype.mouse.txt,/usr/share/doc/circos/examples/data/karyotype/karyotype.rat.txt
+ 
+ chromosomes_order_by_karyotype = yes
+ chromosomes_units              = 1000000
+--- a/etc/housekeeping.conf
++++ b/etc/housekeeping.conf
+@@ -255,7 +255,7 @@
+ data_out_of_range = trim,warn # 
+ 
+ # Track default directory
+-track_defaults = etc/tracks
++track_defaults = /etc/circos/tracks
+ 
+ # Use round brushes for elements with thickness greater than round_brush_min_thickness?
+ round_brush_use           = yes
+--- a/example/etc/circos.conf
++++ b/example/etc/circos.conf
+@@ -19,12 +19,12 @@
+ color         = black_a5
+ 
+ <link>
+-file = data/rn.bundle.txt
++file = /usr/share/doc/circos/examples/data/rn.bundle.txt
+ <<include link.rules.conf>>
+ </link>
+ 
+ <link>
+-file = data/mm.bundle.txt
++file = /usr/share/doc/circos/examples/data/mm.bundle.txt
+ <<include link.rules.conf>>
+ </link>
+ 
+@@ -41,7 +41,7 @@
+ <plot>
+ show   = conf(show_text)
+ type   = text
+-file   = data/genes.txt
++file   = /usr/share/doc/circos/examples/data/genes.txt
+ color  = black
+ r1     = 0.73r
+ r0     = 0.415r
+@@ -86,7 +86,7 @@
+ <plot>
+ show   = conf(show_heatmaps)
+ type   = heatmap
+-file   = data/heatmap.hs.mm.20e6.txt
++file   = /usr/share/doc/circos/examples/data/heatmap.hs.mm.20e6.txt
+ # this is a 9-color Brewer blues sequential palette
+ # see etc/colors.brewer.lists.conf for color list definitions and
+ # etc/colors.brewer.conf for Brewer color RGB definitions
+@@ -102,7 +102,7 @@
+ <plot>
+ show   = conf(show_heatmaps)
+ type   = heatmap
+-file   = data/heatmap.hs.rn.20e6.txt
++file   = /usr/share/doc/circos/examples/data/heatmap.hs.rn.20e6.txt
+ # this is a 9-color Brewer reds sequential palette
+ color  = reds-9-seq
+ min    = 0
+@@ -116,7 +116,7 @@
+ <plot>
+ show   = conf(show_heatmaps)
+ type   = heatmap
+-file   = data/heatmap.hs.mm.10e6.txt
++file   = /usr/share/doc/circos/examples/data/heatmap.hs.mm.10e6.txt
+ color  = blues-9-seq
+ min    = 0
+ max    = .10e6
+@@ -129,7 +129,7 @@
+ <plot>
+ show   = conf(show_heatmaps)
+ type   = heatmap
+-file   = data/heatmap.hs.rn.10e6.txt
++file   = /usr/share/doc/circos/examples/data/heatmap.hs.rn.10e6.txt
+ color  = reds-9-seq
+ min    = 0
+ max    = .10e6
+@@ -153,7 +153,7 @@
+ <plot>
+ show = conf(show_histogram)
+ type = histogram
+-file = data/heatmap.hs.mm.20e6.txt
++file = /usr/share/doc/circos/examples/data/heatmap.hs.mm.20e6.txt
+ min  = 0
+ max  = .5e6
+ fill_under = yes
+@@ -199,7 +199,7 @@
+ <plot>
+ show = conf(show_scatter)
+ type = scatter
+-file = data/heatmap.hs.mm.5e6.txt
++file = /usr/share/doc/circos/examples/data/heatmap.hs.mm.5e6.txt
+ r1   = 1r+180p
+ r0   = 1r
+ max  = .5e6
+@@ -217,7 +217,7 @@
+ <plot>
+ show = conf(show_histogram)
+ type = histogram
+-file = data/heatmap.hs.rn.20e6.txt
++file = /usr/share/doc/circos/examples/data/heatmap.hs.rn.20e6.txt
+ r1   = 1r+180p
+ r0   = 1r
+ max  = .5e6
+@@ -230,7 +230,7 @@
+ <plot>
+ show  = conf(show_scatter)
+ type  = scatter
+-file  = data/heatmap.hs.rn.5e6.txt
++file  = /usr/share/doc/circos/examples/data/heatmap.hs.rn.5e6.txt
+ r1    = 1r+180p
+ r0    = 1r
+ max   = .5e6
+--- a/example/etc/highlights.conf
++++ b/example/etc/highlights.conf
+@@ -3,7 +3,7 @@
+ <plot>
+ show = conf(show_highlights)
+ type = highlight
+-file = data/highlights.txt
++file = /usr/share/doc/circos/examples/data/highlights.txt
+ r0   = 1r+180p
+ r1   = 1r+181p
+ stroke_color = black
+@@ -16,7 +16,7 @@
+ <plot>
+ show = conf(show_highlights)
+ type = highlight
+-file = data/highlights.txt
++file = /usr/share/doc/circos/examples/data/highlights.txt
+ r0 = 0.45r-50p
+ r1 = 0.45r-45p
+ 
+--- a/example/etc/mmchain.conf
++++ b/example/etc/mmchain.conf
+@@ -1,6 +1,6 @@
+ <plot>
+ pre_increment_counter = mmchain:1
+-file  = data/heatmap.mm.5e6.hs.counter(mmchain).txt
++file  = /usr/share/doc/circos/examples/data/heatmap.mm.5e6.hs.counter(mmchain).txt
+ show  = conf(show_heatmaps)
+ type  = heatmap
+ min   = 6000
+--- a/example/etc/mmchain.scatter.conf
++++ b/example/etc/mmchain.scatter.conf
+@@ -8,7 +8,7 @@
+ max        = 1e6
+ r0         = eval(sprintf("1r+%dp",90-0*counter(mmchainscatter)))
+ r1         = eval(sprintf("1r+%dp",90-0*counter(mmchainscatter)))
+-file       = data/heatmap.mm.5e6.hs.counter(mmchainscatter).txt
++file       = /usr/share/doc/circos/examples/data/heatmap.mm.5e6.hs.counter(mmchainscatter).txt
+ color      = undef
+ <rules>
+ <rule>
+--- a/example/etc/mmchain.text.conf
++++ b/example/etc/mmchain.text.conf
+@@ -1,6 +1,6 @@
+ <plot>
+ pre_increment_counter = mmchaintext:1
+-file       = ../data/heatmap.mm.5e6.hs.counter(mmchain).txt
++file       = /usr/share/doc/circos/examples/data/heatmap.mm.5e6.hs.counter(mmchain).txt
+ show       = conf(show_text)
+ type       = text
+ label_font = glyph
+--- a/example/etc/rnchain.conf
++++ b/example/etc/rnchain.conf
+@@ -1,6 +1,6 @@
+ <plot>
+ pre_increment_counter = rnchain:1
+-file  = data/heatmap.rn.5e6.hs.counter(rnchain).txt
++file  = /usr/share/doc/circos/examples/data/heatmap.rn.5e6.hs.counter(rnchain).txt
+ show  = conf(show_heatmaps)
+ type  = heatmap
+ min   = 6000
+--- a/example/etc/rnchain.scatter.conf
++++ b/example/etc/rnchain.scatter.conf
+@@ -8,7 +8,7 @@
+ max        = 1e6
+ r0         = eval(sprintf("1r+%dp",180-30*counter(rnchainscatter)))
+ r1         = eval(sprintf("1r+%dp",180-30*counter(rnchainscatter)))
+-file       = data/heatmap.rn.5e6.hs.counter(rnchainscatter).txt
++file       = /usr/share/doc/circos/examples/data/heatmap.rn.5e6.hs.counter(rnchainscatter).txt
+ color      = black
+ <rules>
+ <rule>



View it on GitLab: https://salsa.debian.org/med-team/circos/-/commit/53402cb023b5fdd5901256cad461ce11810c9068

-- 
View it on GitLab: https://salsa.debian.org/med-team/circos/-/commit/53402cb023b5fdd5901256cad461ce11810c9068
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20200607/6bec5904/attachment-0001.html>


More information about the debian-med-commit mailing list