circos 可视化手册-scatter plot 篇

plots这个block 中,支持许多的图表类型,scatter plot是最常用的一种。用法如下:

关于file文件的内容,在之前的文章中已经详细介绍过。r0r1定义圆环的位置,maxmin定义y轴的最小值和最大值,剩余的几个参数控制散点的外观。

glyph表示点的形状,circle代表圆形,triangle代表三角形,rectangle代表矩形;glyph_size控制点的大小;fill_color控制点的填充色,stroke_color控制边框的颜色。

关于scatter plot, 在软件的安装目录下,有对应的默认配置

etc/tracks/scatter.conf

oritenation表示方向,in表示从r0到r1, out表示从r1到r0

plot中,可以插入backgrounds, axes, rules3种block

1. backgrounds

用法如下:

backgrounds 定义背景色,每个定义一个区域的背景色,这个区域由y0y1定义。

plot中, maxmin分别定义了y轴的最大值和最小值,这里的y0y1对应的就是y轴的值;y0代表起始位置,y1代表终止位置;如果只指定了y0y1中的一个,需要参考邻近区域和max,min的值作出判断

在上图的第一个background中,只指定了y0 = 0.006,从其他结果background的设置可以推测出,此时的y1 = max;

上面的例子中,根据y轴的值划分了3个区域,定义了3种不同 的背景色

  1. min到0.002,背景色为vvlred

  2. 0.002到0.006,背景色为vlgrey

  3. 0.006到max, 背景色为vvlgreen

2. axes

用法如下:

axes定义y轴的刻度线,由多个axis构成。和backgrounds 一样,根据y0y1定义区域,spacing定义刻度线的间隔。

刻度线的外观由thicknesscolor两个参数控制,thickness 控制线条的粗细程度,color控制线条的颜色。

3. rules

用法如下:

rules代表规则,由多个rule构成;在每个rule中,conditioon设置规则,var(value) > 0.006 表示 y轴的值大于0.006,当满足这个条件时,执行rule中的其他语句,下面的示例中,调整了value > 0.006的点的外观。

最后看一个实例

这张图中,除了染色体的圆环外,还有3圈圆环,每一个圆环都是一张scatter plot, 而且都设置了背景色和刻度线。

结合整幅图的结构和散点图的用法,理解下面的配置文件就非常简单了

<<include colors_fonts_patterns.conf>>

<<include ideogram.conf>>
<<include ticks.conf>>

<image>
<<include etc/image.conf>>
</image>

karyotype   = data/karyotype/karyotype.human.txt

chromosomes_units = 1000000
chromosomes       = hs1;hs2;hs3
chromosomes_display_default = no

################################################################
# 
# define 3 scatter plots, using the same data file
#

<plots>

# all are scatter plots

type             = scatter
stroke_thickness = 1

# first plot shows all points and selectively formats points at small/large
# y-axis values to be red/green and triangles/rectangles

<plot>

file             = data/6/snp.density.txt
fill_color       = grey
stroke_color     = black
glyph            = circle
glyph_size       = 10

max   = 0.013
min   = 0
r1    = 0.95r
r0    = 0.65r

# optional y0/y1 values (absolute or relative) in <background> blocks
# define the start/end limits of background color
#
# y0 = 0.006
# y0 = 0.75r

<backgrounds>
<background>
color     = vvlgreen
y0        = 0.006
</background>
<background>
color     = vlgrey
y1        = 0.006
y0        = 0.002
</background>
<background>
color     = vvlred
y1        = 0.002
</background>
</backgrounds>

<axes>
<axis>
color     = lgreen
thickness = 1
spacing   = 0.05r
y0        = 0.006
</axis>
<axis>
color     = dgreen
thickness = 2
spacing   = 0.1r
y0        = 0.006
</axis>

<axis>
color     = lgrey
thickness = 1
spacing   = 0.05r
y1        = 0.006
y0        = 0.002
</axis>
<axis>
color     = dgrey
thickness = 2
spacing   = 0.1r
y1        = 0.006
y0        = 0.002
</axis>

<axis>
color     = lred
thickness = 1
spacing   = 0.05r
y1        = 0.002
</axis>

<axis>
color     = dred
thickness = 2
spacing   = 0.1r
y1        = 0.002
</axis>

</axes>

<rules>

<rule>
condition    = var(value) > 0.006
stroke_color = dgreen
fill_color   = green
glyph        = rectangle
glyph_size   = 8
</rule>

<rule>
condition    = var(value) < 0.002
stroke_color = dred
fill_color   = red
glyph        = triangle
</rule>

</rules>

</plot>

# the second plot is a crop of the first plot, placed outside
# the ideogram circle, showing only points with large y-values

<plot>

file             = data/6/snp.density.txt
fill_color       = green
stroke_color     = dgreen
glyph            = rectangle
glyph_size       = 8

max   = 0.013
min   = 0.007
r1    = 1.175r
r0    = 1.075r

<backgrounds>
# you can stack backgrounds by using transparent color
<background>
color     = vlgreen_a4
y0        = 0.75r
</background>
<background>
color     = vlgreen_a4
y0        = 0.5r
</background>
<background>
color     = vlgreen_a4
y0        = 0.25r
</background>
<background>
color     = vlgreen_a4
</background>
</backgrounds>

<axes>
<axis>
color     = green_a3
thickness = 2
spacing   = 0.1r
</axis>
</axes>

<rules>

<rule>
condition    = var(value) < 0.007
show         = no
</rule>

</rules>

</plot>

# the third plot is a crop of the first plot, placed closer to the
# center of the circle, showing only points with small y-values

<plot>

file             = data/6/snp.density.txt
fill_color       = red
stroke_color     = dred
glyph            = rectangle
glyph_size       = 8

max   = 0.0015
min   = 0.000
r1    = 0.60r
r0    = 0.35r

<backgrounds>
<background>
color     = vlred_a4
y1        = 0.25r
</background>
<background>
color     = vlred_a4
y1        = 0.5r
</background>
<background>
color     = vlred_a4
y1        = 0.75r
</background>
<background>
color     = vlred_a4
</background>
</backgrounds>

<axes>
<axis>
color     = red_a5
thickness = 1
spacing   = 0.025r
</axis>
<axis>
color     = red_a3
thickness = 2
spacing   = 0.1r
</axis>
</axes>

<rules>
<rule>
condition    = var(value) > 0.002
show         = no
</rule>
</rules>

</plot>

</plots>

<<include etc/housekeeping.conf>>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,445评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,889评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,047评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,760评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,745评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,638评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,011评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,669评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,923评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,655评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,740评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,406评论 4 320
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,995评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,961评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,023评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,483评论 2 342

推荐阅读更多精彩内容