0
A
回答
3
當然可以 - the tutorial解釋如何在本地運行BLAST和NCBI以及如何解析結果。我將離開實際的實施作爲一個練習給你!
4
from Bio.Blast import NCBIWWW
fasta_string = open("myfasta").read()
result_handle = NCBIWWW.qblast("blastn", "nt", fasta_string)
print result_handle.read()
以上myfasta是設置了互聯網BLAST您的自定義序列文件
您可以result_handle使用NCBIXML後發揮你希望(即獲得前100名,刪除重複)
相關問題
- 1. Biopython本地BLAST數據庫錯誤
- 2. Biopython不會運行
- 3. 通過XGrid運行BLAST
- 4. BioPython:從Blast輸出文件中提取序列ID
- 5. Biopython短核苷酸序列的blast參數
- 6. 我如何使用Biopython運行clustalw
- 7. Biopython:不能使用.count()進行biopython
- 8. 語法錯誤與Biopython
- 9. 在PHP中執行外部BLAST程序
- 10. 使用BioRuby執行BLAST搜索
- 11. biopython MuscleCommandLine
- 12. Biopython在位置
- 13. biopython FeatureLocation比較
- 14. BioPython字母湯
- 15. biopython test_Tutorial ...失敗
- 16. Biopython blastn命令不能在腳本中工作,但從命令行運行
- 17. Blast +:blastdbcmd - 錯誤消息
- 18. Phylo BioPython構建樹
- 19. 安裝Biopython錯誤
- 20. 修正結果biopython
- 21. BioPython計數錯誤
- 22. Biopython SeqIO到Pandas Dataframe
- 23. 解析使用biopython
- 24. PyCharm Mac Biopython安裝
- 25. Biopython縮進錯誤
- 26. 解析僅頂端從BLAST輸出3命中與NCBIXML
- 27. 如何與PEG和PQA在BLAST算法比較PQG?
- 28. CLUSTALW和肌肉,我使用biopython有問題Biopython
- 29. 運行與Java
- 30. 與可運行
好謝謝。你也知道爲什麼我不能從python2.6的Bio中導入python2.5嗎? – Jon 2009-11-03 22:40:30
爲什麼你不打開另一個問題呢? p.s.如果你認爲這是正確的,你應該接受大衛的答案。 – dalloliogm 2010-01-26 12:51:13