美文网首页funny生物信息
GATK中MNP MIXED SYMBOLIC等不同类型解释

GATK中MNP MIXED SYMBOLIC等不同类型解释

作者: 京古 | 来源:发表于2019-10-23 17:56 被阅读0次

    What types of variants can GATK tools detect / handle?


    The answer depends on what tool we're talking about, and whether we're considering variant discovery or variant manipulation.

    Variant manipulation

    GATK variant manipulation tools are able to recognize the following types of alleles:

    • SNP (single nucleotide polymorphism)
    • INDEL (insertion/deletion)
    • MIXED (combination of SNPs and indels at a single position)
    • MNP (multi-nucleotide polymorphism, e.g. a dinucleotide substitution)
    • SYMBOLIC (such as the <NON-REF> allele used in GVCFs produced by HaplotypeCaller, the * allele used to signify the presence of a spanning deletion, or undefined events like a very large allele or one that's fuzzy and not fully modeled; i.e. there's some event going on here but we don't know what exactly)

    Note that SelectVariants, the GATK tool most used for VCF subsetting operations, discriminates strictly between these categories. This means that if you use for example -selectType INDEL to pull out indels, it will only select pure INDEL records, excluding any MIXED records that might include a SNP allele in addition to the insertion or deletion alleles of interest. To include those you would have to also specify selectType MIXED in the same command.

    Variant discovery

    The HaplotypeCaller is a sophisticated variant caller that can call different types of variants at the same time. So in addition to SNPs and indels, it is capable of emitting mixed records by default, as well as symbolic representations for e.g. spanning deletions. It does emit physical phasing information, but in its current version, HC is not able to emit MNPs. If you would like to combine contiguous SNPs into MNPs, you will need to use the ReadBackedPhasing tool with the MNP merging function activated. See the tool documentation for details. Our older (and now deprecated) variant caller, UnifiedGenotyper, was even more limited. It only called SNPs and indels, and did so separately (even if you ran in calling mode BOTH, the program performed separate calling operations internally) so it was not able to recognize that SNPs and Indels should be emitted together as a joint record when they occur at the same site.

    The general release version of GATK is currently not able to detect SVs (structural variations) or CNVs (copy number variations). However, the alpha version of GATK 4 (the next generation of GATK tools) includes tools for performing CNV (copy number variation) analysis in exome data. Let us know if you're interested in trying them out by commenting on this article in the forum.

    There is also a third-party software package called GenomeSTRiP built on top of GATK that provides SV (structural variation) analysis capabilities.

    原文路径:
    https://software.broadinstitute.org/gatk/documentation/article?id=3682

    相关文章

      网友评论

        本文标题:GATK中MNP MIXED SYMBOLIC等不同类型解释

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