- Bioinformatics with Python Cookbook
- Tiago Antao
- 81字
- 2021-06-10 19:01:45
Getting ready
If you are using Jupyter Notebook, then open Chapter02/Basic_Sequence_Processing.ipynb. If not, you will need to download a FASTA sequence. We will use the human Lactase (LCT) gene as an example; you can get this using your knowledge from the previous recipe, by using the Entrez research interface:
from Bio import Entrez, SeqIO
Entrez.email = "your@email.here"
hdl = Entrez.efetch(db='nucleotide', id=['NM_002299'], rettype='fasta') # Lactase gene
seq = SeqIO.read(hdl, 'fasta')
Note that our example sequence is available on the Biopython sequence record.
推薦閱讀
- 從零開始構建企業級RAG系統
- Unity 2020 By Example
- Android應用程序開發與典型案例
- SQL學習指南(第3版)
- 造個小程序:與微信一起干件正經事兒
- Java高手真經(高級編程卷):Java Web高級開發技術
- Learning Flask Framework
- 三維圖形化C++趣味編程
- HTML5 Mobile Development Cookbook
- Practical DevOps
- PhoneGap Mobile Application Development Cookbook
- QTP自動化測試進階
- 基于SpringBoot實現:Java分布式中間件開發入門與實戰
- Mastering Docker
- Unity Android Game Development by Example Beginner's Guide