Ignore the names for now and just decide which annotations you want, and then figure out whether they relate to region-, gene-, or filter-based annotations. You can then annotate with multiple different types concurrently. Kai Wang's documentation on the Annovar website is pretty comprehensive in fact, compare to other programs.
Here is code that I re-use a lot, including the code that I use to download the databases. The eventual type of annotation is specified with the -protocol
and -operation
parameters
perl /Programs/annovar/annotate_variation.pl -buildver hg19 -downdb
-webfrom annovar refGene /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb cytoBand /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb genomicSuperDups /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar esp6500siv2_all /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar 1000g2015aug /Programs/annovar/humandb/ ;
-downdb -webfrom annovar 1000g2014oct /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar exac03 /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar gme /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar snp138 /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar avsnp147 /Programs/annovar/humandb/ ;
-downdb -webfrom annovar ljb26_all /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar dbnsfp30a /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar cosmic70 /Programs/annovar/humandb/ ;
perl /Programs/annovar/annotate_variation.pl -buildver hg19
-downdb -webfrom annovar clinvar_20161128 /Programs/annovar/humandb/ ;
perl /Programs/annovar/table_annovar.pl MyVariants.ann /Programs/annovar/humandb/
-buildver hg19 -remove -otherinfo
-protocol refGene,cytoBand,gme,esp6500siv2_all,exac03,dbnsfp30a,avsnp147,cosmic70,clinvar_20161128
-operation g,r,f,f,f,f,f,f,f -nastring "NA" -csvout ;
Thanks sir. I'll read the documentation again. Thanks for providing a good example. Whatever the databased you have invoked through ANNOVAR, are they for WES data or something else. How to determine functional prediction of mutation individually. (other than ANNOVAR way, because I didn't find separate repository of metaSVM or metaLR for functional prediction. Same question for determination of significant somatic mutations.
Thanks again.