美文网首页基因家族生信工具生信干货
生信小白更新利用RIdeogram画染色体位置图

生信小白更新利用RIdeogram画染色体位置图

作者: 生信漫谈 | 来源:发表于2023-07-05 20:14 被阅读0次

    不错的RIdeogram 包
    由Guangchuang Yu与Jinhui Chen指导,Zhaodong Hao同学出品的R包。功能一目了然,就是在染色体上直接体现某些基因的value。
    The R package RIdeogram allows users to build high-quality idiograms of any species of interest. It can map continuous and discrete genome-wide data on the idiograms and visualize them in a heat map and track labels, respectively.


    image.png

    运行RStudio,设置工作路径

    查询工作路径

    getwd()
    

    设置工作路径

    setwd("D:/RStudio/data")
    

    包安装路径

    .libPaths()
    

    染色体基因位置图

    #安装RIdeogram
    #安装RIdeogram
    install.packages('RIdeogram')
    #调用RIdeogram
    library(RIdeogram)
    karyotype <- read.table("Os_karyotype.txt", sep = "\t", header = T, stringsAsFactors = F)
    density <- read.table("Os_density.txt", sep = "\t", header = T, stringsAsFactors = F)
    location <- read.table("Os_location.txt", sep = "\t", header = T, stringsAsFactors = F)
    ideogram(karyotype = karyotype, overlaid = density,label=location,label_type = "marker")
    convertSVG("chromosome.svg", device = "tiff", dpi = 300)
    convertSVG("chromosome.svg", device = "png")
    
    image.png
    image.png

    得到的是三个格式的图片:


    image.png

    Os_density示例文件格式如下:

    image.png

    Os_karyotype示例文件格式如下:

    image.png

    Os_location基因位置示例文件如下:

    image.png image.png

    今天就先给大家介绍到这里,希望大家的科研能有所帮助!祝您科研顺利快乐!


    生信漫谈

    生信漫谈

    生信漫谈,认识生信,学习生信,跨越生信入门路上的障碍,从而利用生信技术解决科研学习路上的绊脚石!

    相关文章

      网友评论

        本文标题:生信小白更新利用RIdeogram画染色体位置图

        本文链接:https://www.haomeiwen.com/subject/wtwkudtx.html