Skip to content

The Serial Bioinformatician

CI Status Deploy Status License Stars

Book Cover

A comprehensive guide from the central dogma to cutting-edge computational techniques in bioinformatics.

Download PDF


About the Author

Raymond Otoo, Ph.D. is a Bioinformatics Scientist specializing in multi-omics integration and biomarker discovery. His work focuses on applying systems biology approaches to unravel the complexities of neurodegenerative diseases and developing interactive tools to make these insights accessible to clinicians.

Introduction

The journey of bioinformatics is one of translation. We start with a biological problem—a disease, a phenotype, or an unknown mechanism—and generate massive amounts of biological data.

The main goal of this book is to guide you from the problem and raw biological data to robust molecular insights. It is these insights that provide the necessary directions for identifying novel therapeutic targets and advancing the field of precision medicine.


Book Structure & Table of Contents

This book is structured to guide the reader from the fundamental principles of molecular biology to the practical application of bioinformatics tools and algorithms.

Part 1: The Biological Foundation

Part 2: Foundational Computational Skills

Part 3: Core Bioinformatics Analysis

Part 4: High-Throughput "Omics"

Part 5: Advanced Topics and Applications


Appendices


Building the Book Locally

To read this book on your own computer or to check your changes before contributing:

  1. Install Dependencies:
    pip3 install -r requirements.txt
    
  2. Run the Server:
    python3 -m mkdocs serve
    
  3. View: Open your browser to http://127.0.0.1:8000.

Deploying to GitHub Pages

To publish or update the live version of the book:

  1. Commit your changes: Make sure all your latest work is saved.
    git add .
    git commit -m "Update book content"
    
  2. Run the deploy command:
    python3 -m mkdocs gh-deploy