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 消失区域包括转录特征的特征消融

  • 相关阅读:
    Linux 终端管理工具,让终端管理更简单。这一期是【FinalShell】
    django添加检查用户名和手机号数量接口
    vue发送短信逻辑
    使用celery异步发送短信
    redis的pipline使用
    后端注册接口完善
    检查用户名是否使用接口
    celery配置与基本使用
    Celery介绍
    ubuntu开发机初始化
  • 原文地址:https://www.cnblogs.com/yuwq/p/11451350.html
Copyright © 2011-2022 走看看