美文网首页
本地blast

本地blast

作者: 茶思饭 | 来源:发表于2020-05-20 16:29 被阅读0次
  1. 建立比对数据库
    makeblastdb -in Ms.Unigene.fa -dbtype nucl -parse_seqids -out Msrna '##建立比对数据库
    -in 数据来源fasta 格式,
    -dbtype 数据库类型, nucl 代表核酸 prot为蛋白质
    -parse_seqids 用途不明,建议加上,
    -out 数据库名称
    执行上述代码后将生成后缀为nin,nhr,nsq,nsi,nsd,nog六个文件,至此,自定义搜索库文件生成完成


    image.png
  2. 开始blast

blast程序的基本格式

blast* -query [filename,输入文件名] -db [dbname数据库名称] -out [outputfilename输出文件名]
-query 比对序列文件,必须是fasta格式
-db 格式化好的数据库名称,需要先建库
-out 输出到文件
-outfmt # 输出文件格式;
0 = pairwise,
1 = query-anchored showing identities,
2 = query-anchored no identities,
3 = flat query-anchored, show identities,
4 = flat query-anchored, no identities,
5 = XML Blast output,
6 = tabular,
7 = tabular with comment lines,
8 = Text ASN.1,
9 = Binary ASN.1
10 = Comma-separated values

-perc_identity # 指定结果中perc_identity 的范围
-evalue 1e-5 #指定筛选标准,超过指定evalue值的数据被舍弃,普通模式 1e-5
-num_threads #线程数,根据电脑配置量力而行
-num_descriptions# tabular格式输出结果的条数
blastn ## 核酸比对
blastp ## 蛋白比对
blastx ## 用核酸序列比对蛋白数据库
tblastn## 蛋白序列对核酸库的比对,现将核酸库翻译成蛋白库,再将蛋白序列与翻译后的蛋白库进行比对。
tblastx## 核酸与核酸数据库在蛋白质水平比较

短序列比对

blastn -task blastn-short -db Zea_mays.B73_RefGen_v4.dna.toplevel.fa -query primer.txt -word_size 7 -evalue 1 -out uniprimer.txt

短序列比对,不用-dbtype 及-parse_seqids

-task 指定任务类型,这里需要指定为blastn-short
-word_size 这里设为7
-evalue 指定筛选标准,这里设为1,因为短序列的e值一般会较大

相关文章

  • 生信入门:序列比对之blast在线和本地使用

    主要内容 1 背景 2 在线blast 3 本地blast 3.1 老版本blast 3.2 新版本bl...

  • 本地blast

    建数据库:makeblastdb -in .\miR171.fa -input_type fasta -dbtyp...

  • 本地Blast

    为什么选用本地Blast: 我一直有个疑问,NCBI提供了简洁明了的交互式Blast操作界面,Genebank有着...

  • 本地blast

    建立比对数据库makeblastdb -in Ms.Unigene.fa -dbtype nucl -pars...

  • 本地BLAST

    安装BLAST mamba install -c bioconda blast 构建核酸BLAST数据库,这里因为...

  • 本地blast

    建库 蛋白比对 提取ID seqkit fx2tab swiss-prot.tab -n -i >id.fa bl...

  • 本地blast

    建库 -in:待格式化的序列文件-dbtype:数据库类型,prot或nucl-out:数据库名 比对 -quer...

  • 2021-02-28

    本地blast后外显子拼接(好记性不如...) 利用TBtools工具进行本地blast大致可分为三大步骤...

  • blast 用法汇总

    blast 安装: 先在网上找到最新版的blast下载到本地;this is the download padg...

  • windows 下的blast+安装以及使用

    blast+的安装 1.程序下载:访问blast本地软件包链接 blast_latest下载适合自己系统的blas...

网友评论

      本文标题:本地blast

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