zoukankan      html  css  js  c++  java
  • Splice_Region的定义

    在vcf2maf中,对splice_site 和 splice_region都做了明确的说明。

    splice_region

    return "Splice_Region" if( $effect eq 'splice_region_variant' )
    splice_region_variant => 8, # A sequence variant in which a change has occurred within the region of the splice site, either within 1-3 bases of the exon or 3-8 bases of the intron
    Splice_region: 变异发生在splice site区域内或者外显子的1-3碱基处或者内含子的3-8碱基处

    Splice_Site

    return "Splice_Site" if( $effect =~ /^(splice_acceptor_variant|splice_donor_variant|transcript_ablation|exon_loss_variant)$/ );
    Splice_Site 又细分到 splice_acceptor_variantsplice_donor_varianttranscript_ablationexon_loss_variant

    splice_acceptor_variant => 2, # A splice variant that changes the 2 base region at the 3' end of an intron
    Splice_acceptor_variant 在intron的3'端2碱基范围内的变异

    splice_donor_variant => 2, # A splice variant that changes the 2 base region at the 5' end of an intron
    Splice_donor_variant 在内含子5'端2碱基范围内的变异

    exon_loss_variant => 1, # A sequence variant whereby an exon is lost from the transcript
    Exon_loss_variant 转录本中的一个外显子丢失

    transcript_ablation => 1, # A feature ablation whereby the deleted region includes a transcript feature
    Transcript_ablation 消失区域包括转录特征的特征消融

  • 相关阅读:
    JAVA设计模式之观察者模式 IT
    基本的SqlPlus命令
    JAVA中SERIALVERSIONUID的解释
    msSQL
    java解析超大xml(1G),一般数据挖掘dblp.xml文件的解析
    在oracle中用sql脚本生成csv文件举例
    sql 复习知识大全2
    sql 复习知识大全1
    3.17作业解答
    3.20作业解答
  • 原文地址:https://www.cnblogs.com/yuwq/p/11451350.html
Copyright © 2011-2022 走看看