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

  • 相关阅读:
    -for循环案例(下)
    for循环案例(上)
    for循环
    判断语句案例
    判断语句
    操作符优先级
    windows 下安装图片标注软件 labelling和出错解决
    tf-faster rcnn
    目标检测——Faster R-CNN 详解、Pytorch搭建、训练自己的数据集
    java idea 配置安装
  • 原文地址:https://www.cnblogs.com/yuwq/p/11451350.html
Copyright © 2011-2022 走看看