从零开始学CIRCOS绘制圈图(四)

通常circos的中间部分不是空白区域,会用一条条线进行连接,表示两个染色体部分区域有关系。

数据格式

对于link,circos要求输入数据至少有6列,分别是chr1 start1 end1 chr2 start2 end2 [options]

举个例子

  1. chr1 1000000 2000000 chr5 3000000 4000000

构建输入

这次会以A. lyrata 和 A.thalina的基因组为例,利用JCVI来构建Circos的输入.

新建一个项目文件夹

  1. mkdir -p ath_aly && cd ath_aly

如果没有安装jcvi,用conda进行安装

  1. conda create -n jcvi jcvi
  2. conda activate jcvi
  3. conda install last scipy
  4. wget https://raw.githubusercontent.com/tanghaibao/jcvi-bin/master/bin/scip
  5. chmod 755 scip
  6. mv scip ~/miniconda3/bin

数据下载

http://plants.ensembl.org/index.html分别下载这两个物种的GFF文件和CDS序列,

  1. # Athaliana
  2. wget ftp://ftp.ensemblgenomes.org/pub/plants/release-44/fasta/arabidopsis_thaliana/cds/Arabidopsis_thaliana.TAIR10.cds.all.fa.gz
  3. wget ftp://ftp.ensemblgenomes.org/pub/plants/release-44/gff3/arabidopsis_thaliana/Arabidopsis_thaliana.TAIR10.44.gff3.gz
  4. # Alyrata
  5. wget ftp://ftp.ensemblgenomes.org/pub/plants/release-44/fasta/arabidopsis_lyrata/cds/Arabidopsis_lyrata.v.1.0.cds.all.fa.gz
  6. wget ftp://ftp.ensemblgenomes.org/pub/plants/release-44/gff3/arabidopsis_lyrata/Arabidopsis_lyrata.v.1.0.44.gff3.gz

数据预处理

将GFF3转成BED格式

  1. python -m jcvi.formats.gff bed --type=mRNA --key=transcript_id Arabidopsis_thaliana.TAIR10.44.gff3.gz > ath.bed
  2. python -m jcvi.formats.gff bed --type=mRNA --key=transcript_id Arabidopsis_lyrata.v.1.0.44.gff3.gz > aly.bed

将BED去重复

  1. python -m jcvi.formats.bed uniq ath.bed
  2. python -m jcvi.formats.bed uniq aly.bed

提取CDS序列

  1. seqkit grep -f <(cut -f 4 ath.bed ) Athaliana_167_TAIR10.cds.fa.gz | seqkit seq -i > ath.cds
  2. seqkit grep -f <(cut -f 4 aly.bed ) Arabidopsis_lyrata.v.1.0.cds.all.fa.gz | seqkit seq -i > aly.cds

karyotype

从ENSEMBLE下载的GFF文件中,已经包含了每个基因组的大小, 当然也可以各种工具从基因组序列序列中获取大小。

karyotype.aly.txt

  1. chr - aly1 aly1 0 33132539 rdylbu-11-div-1
  2. chr - aly2 aly2 0 19320864 rdylbu-11-div-2
  3. chr - aly3 aly3 0 24464547 rdylbu-11-div-3
  4. chr - aly4 aly4 0 23328337 rdylbu-11-div-4
  5. chr - aly5 aly5 0 21221946 rdylbu-11-div-5
  6. chr - aly6 aly6 0 25113588 rdylbu-11-div-6
  7. chr - aly7 aly7 0 24649197 rdylbu-11-div-7
  8. chr - aly8 aly8 0 22951293 rdylbu-11-div-8

karyotype.tair10.txt

  1. chr - ath1 ath1 0 30427671 brbg-10-div-1
  2. chr - ath2 ath2 0 19698289 brbg-10-div-3
  3. chr - ath3 ath3 0 23459830 brbg-10-div-5
  4. chr - ath4 ath4 0 18585056 brbg-10-div-7
  5. chr - ath5 ath5 0 26975502 brbg-10-div-9

因为ENSMEBLE上Athalina和Alyrata的染色体命名都是1,2,3…,就会导致CIRCOS无法正确的区分来源,因此在原本的命名前加上了物种名缩写做为标签。

同时。我们要修改之前的bed文件

  1. sed -e 's/^/ath/' ath.uniq.bed > ath.bed
  2. sed -e 's/^/aly/' aly.uniq.bed > aly.bed

links

为了构建links文件,需要利用JCVI进行共线性分析.

确保有4个文件

  1. $ ls ???.???
  2. aly.bed aly.cds ath.bed ath.cds

用jcvi进行分析

  1. python -m jcvi.compara.catalog ortholog --no_strip_names ath aly
  2. python -m jcvi.compara.synteny screen --minspan=30 --simple ath.aly.anchors ath.aly.anchors.new

其中ath.aly.anchors.simple是我们后续要用到的文件。

  1. $ head -n 1 ath.aly.anchors.simple
  2. AT1G24260.1 AT1G27280.1 fgenesh1_pm.C_scaffold_1002045 fgenesh2_kg.1__2877__AT1G24260.1 225 -

我们需要将ath.aly.anchors.simple里的基因名替换成实际的位置信息,将其变成符合Circos的输入信息。

我写了一个simple2links.py脚本,代码在我的GitHub上,https://github.com/xuzhougeng/myscripts

  1. python ~/myscripts/simple2links.py ath.aly.anchors.simple

最终会输出ath.aly.anchors.simple_link.txt

配置circos

接下来做如下配置。 新建一个etc文件夹,在里面建立一个links.conf用来配置links, 建立一个ticks.conf配置ticks

  1. mkdir etc
  2. # vim etc/links.conf
  3. <links>
  4.  
  5. <link>
  6. file = ath.aly.anchors.simple_link.txt
  7. radius = 0.61r
  8. color = blue_a4
  9. ribbon = yes
  10. </link>
  11.  
  12. </links>
  13.  
  14. # vim etc/ticks.conf
  15.  
  16. show_ticks = yes
  17. show_tick_labels = yes
  18.  
  19. <ticks>
  20.  
  21. radius = 1r
  22. color = black
  23. thickness = 2p
  24. multiplier = 1e-6
  25. format = %d
  26.  
  27. <tick>
  28. spacing = 1u
  29. size = 5p
  30. </tick>
  31.  
  32. <tick>
  33. thickness = 4p
  34. spacing = 5u
  35. size = 10p
  36. show_label = yes
  37. label_size = 10p
  38. label_offset = 10p
  39. format = %d
  40. </tick>
  41.  
  42. </ticks>

编辑circos.conf

  1. karyotype = karyotype.tair10.txt,karyotype.aly.txt
  2.  
  3. chromosomes_color = chr1=rdylbu-11-div-1,chr2=rdylbu-11-div-3,chr3=rdylbu-11-div-5,chr4=rdylbu-11-div-7,chr5=rdylbu-11-div-9
  4.  
  5. chromosomes_units = 1000000
  6. <<include ./etc/ticks.conf>>
  7.  
  8. <ideogram>
  9. <spacing>
  10. default = 0.005r
  11. </spacing>
  12. radius = 0.90r
  13. thickness = 20p
  14. fill = yes
  15. stroke_color = dgrey
  16. stroke_thickness = 2p
  17.  
  18. show_label = yes #展示label
  19. label_font = default # 字体
  20. label_radius = dims(ideogram,radius) + 0.08r #位置
  21. label_size = 16 # 字体大小
  22. label_parallel = yes # 是否平行
  23.  
  24. label_format = eval(sprintf("%s",var(chr))) # 格式
  25. </ideogram>
  26.  
  27. <<include ./etc/links.conf>>
  28.  
  29. <image>
  30. dir* = . # 输出文件夹
  31. radius* = 500p # 图片半径
  32. svg* = no # 是否输出svg
  33. <<include etc/image.conf>>
  34. </image>
  35.  
  36. <<include etc/colors_fonts_patterns.conf>>
  37. <<include etc/housekeeping.conf>>

运行circos -conf circos.conf的效果如下

从零开始学CIRCOS绘制圈图(四)-图片1

不难发现一个问题,里面线的颜色一模一样,不容易进行区分。虽然可以在输入ath.aly.anchors.simple_link.txt里增加颜色,但是circos提供了一个动态规则,可以更加方便的直接在配置文件里修改。

建立规则(rules)

circos的配置格式为

  1. <rules>
  2.  
  3. <rule>
  4. ...
  5. </rule>
  6.  
  7. <rule>
  8. ...
  9. </rule>
  10. ...
  11.  
  12. </rules>

circos的规则可以很复杂,但是最简单的情况就是下面这种

  1. condition = var(chr1) eq "ath1"
  2. color=rdylgn-5-div-1

condition = var(chr1) eq "ath1"表示,判断link文件中左侧染色体的名字(var(chr1))是不是(eq)"ath1",如果是的话,那么颜色就是rdylgn-5-div-1

我们可以在etc/links.conf中增加五个条件,修改后的links.conf如下

  1. <link>
  2. file = ath.aly.anchors.simple_link.txt
  3. radius = 0.61r
  4. color = blue_a4
  5. ribbon = yes
  6.  
  7. <rules>
  8. <rule>
  9. condition = var(chr1) eq "ath1"
  10. color=rdylgn-5-div-1
  11. </rule>
  12. <rule>
  13. condition = var(chr1) eq "ath2"
  14. color=rdylgn-5-div-2
  15. </rule>
  16. <rule>
  17. condition = var(chr1) eq "ath3"
  18. color=rdylgn-5-div-3
  19. </rule>
  20. <rule>
  21. condition = var(chr1) eq "ath4"
  22. color=rdylgn-5-div-4
  23. </rule>
  24. <rule>
  25. condition = var(chr1) eq "ath5"
  26. color=rdylgn-5-div-5
  27. </rule>
  28. </rules>
  29.  
  30. </link>
  31. </links>

运行circos -conf circos.conf的效果如下

从零开始学CIRCOS绘制圈图(四)-图片2

这张图还有一个问题是,通常别人的Circos染色体都是对称排列,右边第一个是ath1,那么左边第一个也最好是aly1,那么应该如何配置呢?以及两套基因组会分别占据两侧,中间有一个明显的空隙,如何做到的呢?

发表评论

匿名网友

拖动滑块以完成验证
加载失败