- 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.
推薦閱讀
- 國際大學生程序設計競賽中山大學內部選拔真題解(二)
- Monkey Game Development:Beginner's Guide
- 軟件界面交互設計基礎
- Rust編程從入門到實戰
- Visual Basic程序設計實驗指導(第二版)
- C#開發案例精粹
- Qt5 C++ GUI Programming Cookbook
- 零基礎學C語言(升級版)
- MyBatis 3源碼深度解析
- Oracle Data Guard 11gR2 Administration Beginner's Guide
- 從零開始學Selenium自動化測試:基于Python:視頻教學版
- Ubuntu Server Cookbook
- Bitcoin Essentials
- Learning PrimeFaces Extensions Development
- Building RESTful Web Services with PHP 7