Book Image

Bioinformatics with Python Cookbook - Second Edition

By : Tiago Antao
Book Image

Bioinformatics with Python Cookbook - Second Edition

By: Tiago Antao

Overview of this book

Bioinformatics is an active research field that uses a range of simple-to-advanced computations to extract valuable information from biological data. This book covers next-generation sequencing, genomics, metagenomics, population genetics, phylogenetics, and proteomics. You'll learn modern programming techniques to analyze large amounts of biological data. With the help of real-world examples, you'll convert, analyze, and visualize datasets using various Python tools and libraries. This book will help you get a better understanding of working with a Galaxy server, which is the most widely used bioinformatics web-based pipeline system. This updated edition also includes advanced next-generation sequencing filtering techniques. You'll also explore topics such as SNP discovery using statistical approaches under high-performance computing frameworks such as Dask and Spark. By the end of this book, you'll be able to use and implement modern programming techniques and frameworks to deal with the ever-increasing deluge of bioinformatics data.
Table of Contents (16 chapters)
Title Page
About Packt
Contributors
Preface
Index

Introduction


In this chapter, we will address some topics that are well within the remit of computational biology and deserve at least some reference. We will start with a recipe on metagenomics using QIIME 2. Then, we will infer shared chromosomal segments across individuals using Germline. After that, we will have a look at some recipes using the Global Biodiversity Information Facility (GBIF), a database of worldwide scientific data on biodiversity. Then, we will interface Python with Cytoscape, a powerful software platform that's used for visualizing genomic and proteomic interaction networks.

We will take the opportunity to indirectly introduce other topics, such as more bioinformatics databases, graph processing, and geo-referencing, that are relevant to our context (one way or another). To interface, we will only use REST APIs for all databases and services, making the code in all of the recipes here quite streamlined. You may want to refresh your knowledge of REST architectures. We...