美文网首页
How to get the description of bl

How to get the description of bl

作者: OmicsAcademy | 来源:发表于2018-10-17 23:03 被阅读0次
blastn -db nt -remote -query query.fa -entrez_query "Homo sapiens [Organism]" -outfmt 6 -out blast_res_2_nt.table
cat blast_res_2_nt.table |perl -e 'while(<>){@ele=split; print "$ele[0]\t$ele[1]\n" if !exists $rec_id{$ele[0]};$rec_id{$ele[0]}++}'  |cut -f2 |sort -u  |blastdbcmd  -db nt  -outfmt "%a|%g|%t" -entry_batch -  -out  blast_res_2_nt.tab_description.tab  >> blast_res_2_nt.tab_description.log 2>&1

相关文章

网友评论

      本文标题:How to get the description of bl

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