zoukankan      html  css  js  c++  java
  • 如何用annovar下载数据库

    主要参考annovar官网

    https://annovar.openbioinformatics.org/en/latest/user-guide/startup/

    里面写道

    First, we need to download appropriate database files using annotate_variation.pl, and next we will run the table_annovar.pl program to annotate the variants in the example/ex1.avinput file.

    先使用annotate_variation.pl下载合适的数据库

    官网示例命令
    annotate_variation.pl -buildver hg19 -downdb -webfrom annovar refGene humandb/

    annotate_variation.pl -buildver hg19 -downdb cytoBand humandb/

    annotate_variation.pl -buildver hg19 -downdb -webfrom annovar exac03 humandb/

    annotate_variation.pl -buildver hg19 -downdb -webfrom annovar avsnp147 humandb/

    annotate_variation.pl -buildver hg19 -downdb -webfrom annovar dbnsfp30a humandb/

    table_annovar.pl example/ex1.avinput humandb/ -buildver hg19 -out myanno -remove -protocol refGene,cytoBand,exac03,avsnp147,dbnsfp30a -operation gx,r,f,f,f -nastring . -csvout -polish -xref example/gene_xref.txt

    实践操作命令

    在下载的annovar软件路径可以找到annotate_variation.pl

    比如想下载hg38的gnomad数据库

    命令一

    annotate_variation.pl -buildver hg38 -downdb gnomad30_genome /your_own_data_path/03.annovar_download/humandb

    用-buildver选择数据库,用-downdb 选择要下载的数据库名称(名称来自annovar官网首页极少),这样操作会看到是从UCSC上下载

    命令二 指定下载位置

    annotate_variation.pl -buildver hg38 -downdb --webfrom annovar gnomad30_genome /your_own_data_path/03.annovar_download/humandb

    加入-webfrom 可以指定下载来源,这样操作是从annovar下载,经测试会更快些

  • 相关阅读:
    1.Python进阶 词典dict
    10.Python基础 反过头来看看
    test
    地图添加标记物 并添加点击弹出框
    百度地图里面添加覆盖物的事件显示最后一个?
    css3之animation制作闪烁文字效果 转
    ajax beforeSend中无效果
    jquery 中 $('div','li')是什么意思?
    SQL 单引号转义
    jQuery 遍历
  • 原文地址:https://www.cnblogs.com/artesian0526/p/14511480.html
Copyright © 2011-2022 走看看