美文网首页
Icelogo Motif 分析

Icelogo Motif 分析

作者: 余绕 | 来源:发表于2021-11-14 19:30 被阅读0次

1.获取需要分析的sequence,这里以Kac为例,发生乙酰化修饰的K上下游10个氨基酸。
通过脚本获得序列。

open FA,"$ARGV[0]"; #打开蛋白组的fast文件
$/=">";
<FA>;
while(<FA>){
    chomp;
    my($ID,$seq)=split /\n/,$_,2;
    @id=split /\|/,$ID;
    $id[1]=~s/ *//g;
    #print "$id[1]\n";
    $seq=~s/\n//g;
    #print"$id[1]\n$seq\n";
    $SEQ{$id[1]}=$seq;
    }
    
    
open FA1,"$ARGV[1]"; #打开IDs和Kacs ites文件
open OU,">$ARGV[2]";

$/="\n";

while(<FA1>){
    chomp;
    my($ID,$site)=split /\t/,$_;
    #print"$ID\n";
    if(exists $SEQ{$ID}){
        $seqence= $SEQ{$ID};
        $index=$site-1;

        $leng=length $seqence;
        next, if (($index-1) <9 or ($index+11)> $leng );
        
        $motif_seq1=substr($seqence,$index-10,10);
        $motif_seq2=substr($seqence,$index+1,10);
        $motif=$motif_seq1." ".$motif_seq2;
        print"$ID\t$site\t$motif\n";
        #print OU "$motif\n";

    }
    
}

输入文件格式:


image.png image.png

运行命令:

D:\Portable software\IceLogo\icelogo-1.3.8> perl .\aminoacid_seq_extraction.pl .\uniprot-oryza+sativa.fasta .\oxi_sites.txt oxi_seq.txt

蛋白的Fast squence下载于uniprot网站。


image.png
  1. 获得的序列再Icelogo中进行motif预测:


    image.png

相关文章

  • Icelogo Motif 分析

    1.获取需要分析的sequence,这里以Kac为例,发生乙酰化修饰的K上下游10个氨基酸。通过脚本获得序列。 输...

  • 关于motif你需要知道的事

    欢迎关注”生信修炼手册”! 在chip_seq数据分析中,motif分析是一项重要的分析内容。通过motif分析,...

  • motif 分析

    The MEME Suite http://meme-suite.org/index.htmlJASPAR - a...

  • Motif 分析

    1. Homer 1.1. homer的安装和配置 按照这个链接里的教程进行。 1.2. install mm10...

  • Fimo扫描基因组序列

    在做motif分析时,经常用Fimo扫描基因组序列得到motif对应的序列位置,进而进行下一步的分析。说明文档可参...

  • Motif 分析(2) - HOMER Motif 分析基本步骤

    在基因组调控元件分析中,HOMER 可以用于发现新的motif。HOMER 通过比较两个序列集,再使用ZOOPS ...

  • motif分析-MEME

    1 什么是motif分析 在DNA或蛋白的同源序列中,不同位点的保守程度是不一样的,一般来说,对DNA或蛋白质功能...

  • 基因家族分析(4)motif 预测

    本节讲解如何进行 motif 预测,seqlogo 和motif位置展示。 motif预测 motif 预测使用 ...

  • ATAC-seq专题---生信分析流程

    ATAC-seq信息分析流程主要分为以下几个部分:数据质控、序列比对、峰检测、motif分析、峰注释、富集分析,下...

  • ATAC-seq专题 | 生信分析流程

    ATAC-Seq信息分析流程主要分为以下几个部分:数据质控、序列比对、峰检测、motif分析、峰注释、富集分析,下...

网友评论

      本文标题:Icelogo Motif 分析

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