- 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.
推薦閱讀
- Unity 2020 By Example
- 零基礎學Scratch少兒編程:小學課本中的Scratch創意編程
- Mastering Natural Language Processing with Python
- Hadoop+Spark大數據分析實戰
- Learning Neo4j 3.x(Second Edition)
- HTML5入門經典
- Symfony2 Essentials
- Mastering JBoss Enterprise Application Platform 7
- 從Java到Web程序設計教程
- C/C++程序員面試指南
- Mastering Git
- 打開Go語言之門:入門、實戰與進階
- Learning Nessus for Penetration Testing
- Python應用開發技術
- 優化驅動的設計方法