GATK之VariantAnnotator

VariantAnnotator

简要说明

用途: 利用上下文信息注释识别的变异位点(variant calls)
分类: 变异位点操作工具
概要: 根据变异位点的背景信息(与功能注释相对)进行注释。目前有许多的注释模块(见注释模块一节)可供使用。

输入文件

用于注释的VCF文件和可选的BAM文件

输出文件

注释完毕的VCF文件

使用案例

HaplotypeCallerUnifiedGenotyper的结果中增加每个样本的深度和dbSNP ID信息。

java -jar GenomeAnalysisTK.jar \
   -R reference.fasta \
   -T VariantAnnotator \
   -I input.bam \
   -V input.vcf \
   -o output.vcf \
   -A Coverage \
   --dbsnp dbsnp.vcf

参数说明:

-R/--reference_sequence:参考基因组
-T/--analysis_type : 运行的工具
-I/--input_file: 和vcf相应的BAM文件
-o :输出文件
-V/--varaint: 输入的VCF文件
-A/--annotation: 要添加哪些注释项
--dbsnp: 已有的snp信息注释数据库

HaplotypeCaller和MuTect2也有-A选项,并且有些注释模块只能在HaplotypeCaller和MuTect2计算,例如StrandAlleleCountsBySample
如下是 -A可接的内容:

Standard annotations in the list below are marked with a '*'.
Available annotations for the VCF INFO field:
        AS_BaseQualityRankSumTest
        AS_FisherStrand
        AS_InbreedingCoeff
        AS_InsertSizeRankSum
        AS_MQMateRankSumTest
        AS_MappingQualityRankSumTest
        AS_QualByDepth
        AS_RMSMappingQuality
        AS_ReadPosRankSumTest
        AS_StrandOddsRatio
        AlleleBalance
        BaseCounts
        *BaseQualityRankSumTest
        *ChromosomeCounts
        ClippingRankSumTest
        ClusteredReadPosition
        *Coverage
        *ExcessHet
        *FisherStrand
        FractionInformativeReads
        GCContent
        GenotypeSummaries
        *HaplotypeScore
        HardyWeinberg
        HomopolymerRun
        *InbreedingCoeff
        LikelihoodRankSumTest
        LowMQ
        MVLikelihoodRatio
        *MappingQualityRankSumTest
        MappingQualityZero
        NBaseCount
        PossibleDeNovo
        *QualByDepth
        *RMSMappingQuality
        *ReadPosRankSumTest
        SampleList
        SnpEff
        SpanningDeletions
        *StrandOddsRatio
        TandemRepeatAnnotator
        TransmissionDisequilibriumTest
        VariantType
        
Available annotations for the VCF FORMAT field:
        AlleleBalanceBySample
        AlleleCountBySample
        BaseCountsBySample
        BaseQualitySumPerAlleleBySample
        *DepthPerAlleleBySample
        DepthPerSampleHC
        MappingQualityZeroBySample
        OxoGReadCounts
        StrandAlleleCountsBySample
        StrandBiasBySample


Available classes/groups of annotations:
        AS_RMSAnnotation
        AS_RankSumTest
        AS_StandardAnnotation
        AS_StrandBiasTest
        ActiveRegionBasedAnnotation
        BetaTestingAnnotation
        ExperimentalAnnotation
        RMSAnnotation
        RankSumTest
        ReducibleAnnotation
        RodRequiringAnnotation
        StandardAnnotation
        StandardHCAnnotation
        StandardSomaticAnnotation
        StandardUGAnnotation
        StrandBiasTest
        WorkInProgressAnnotation

注释模块

这是官方文档提供的注释模块:

NameSummary
AS_BaseQualityRankSumTestAllele-specific rank Sum Test of REF versus ALT base quality scores
AS_FisherStrandAllele-specific strand bias estimated using Fisher's Exact Test *
AS_InbreedingCoeffAllele-specific likelihood-based test for the inbreeding among samples
AS_InsertSizeRankSumAllele specific Rank Sum Test for insert sizes of REF versus ALT reads
AS_MQMateRankSumTestAllele specific Rank Sum Test for mate's mapping qualities of REF versus ALT reads
AS_MappingQualityRankSumTestAllele specific Rank Sum Test for mapping qualities of REF versus ALT reads
AS_QualByDepthAllele-specific call confidence normalized by depth of sample reads supporting the allele
AS_RMSMappingQualityAllele-specific Root Mean Square of the mapping quality of reads across all samples.
AS_ReadPosRankSumTestAllele-specific Rank Sum Test for relative positioning of REF versus ALT allele within reads
AS_StrandOddsRatioAllele-specific strand bias estimated by the Symmetric Odds Ratio test
AlleleBalanceAllele balance across all samples
AlleleBalanceBySampleAllele balance per sample
AlleleCountBySampleAllele count and frequency expectation per sample
BaseCountsCount of A, C, G, T bases across all samples
BaseCountsBySampleCount of A, C, G, T bases for each sample
BaseQualityRankSumTestRank Sum Test of REF versus ALT base quality scores
BaseQualitySumPerAlleleBySampleSum of evidence in reads supporting each allele for each sample
ChromosomeCountsCounts and frequency of alleles in called genotypes
ClippingRankSumTestRank Sum Test for hard-clipped bases on REF versus ALT reads
ClusteredReadPositionDetect clustering of variants near the ends of reads
CoverageTotal depth of coverage per sample and over all samples.
DepthPerAlleleBySampleDepth of coverage of each allele per sample
DepthPerSampleHCDepth of informative coverage for each sample.
ExcessHetPhred-scaled p-value for exact test of excess heterozygosity
FisherStrandStrand bias estimated using Fisher's Exact Test
FractionInformativeReadsThe fraction of reads deemed informative over the entire cohort
GCContentGC content of the reference around the given site
GenotypeSummariesSummarize genotype statistics from all samples at the site level
HaplotypeScoreConsistency of the site with strictly two segregating haplotypes
HardyWeinbergHardy-Weinberg test for transmission disequilibrium
HomopolymerRunLargest contiguous homopolymer run of the variant allele
InbreedingCoeffLikelihood-based test for the inbreeding among samples
LikelihoodRankSumTestRank Sum Test of per-read likelihoods of REF versus ALT reads
LowMQProportion of low quality reads
MVLikelihoodRatioLikelihood of being a Mendelian Violation
MappingQualityRankSumTestRank Sum Test for mapping qualities of REF versus ALT reads
MappingQualityZeroCount of all reads with MAPQ = 0 across all samples
MappingQualityZeroBySampleCount of reads with mapping quality zero for each sample
NBaseCountPercentage of N bases
OxoGReadCountsCount of read pairs in the F1R2 and F2R1 configurations supporting the reference and alternate alleles
PossibleDeNovoExistence of a de novo mutation in at least one of the given families
QualByDepthVariant call confidence normalized by depth of sample reads supporting a variant
RMSMappingQualityRoot Mean Square of the mapping quality of reads across all samples.
ReadPosRankSumTestRank Sum Test for relative positioning of REF versus ALT alleles within reads
SampleListList samples that are non-reference at a given site
SnpEffTop effect from SnpEff functional predictions
SpanningDeletionsFraction of reads containing spanning deletions
StrandAlleleCountsBySampleNumber of forward and reverse reads that support each allele
StrandBiasBySampleNumber of forward and reverse reads that support REF and ALT alleles
StrandOddsRatioStrand bias estimated by the Symmetric Odds Ratio test
TandemRepeatAnnotatorTandem repeat unit composition and counts per allele
TransmissionDisequilibriumTestWittkowski transmission disequilibrium test
VariantTypeGeneral category of variant
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值