Chapter 10: Visual Verification – Seeing is Believing

Learning Objectives

By the end of this chapter, you will be able to:


The Concept: The "Zero-Install" Solution

In the "old days" of bioinformatics, visualizing genomes was a headache. It required downloading massive reference files, installing complex desktop software like IGV Desktop, and fighting with Java updates and RAM settings just to open a window.

Today, we can bypass that entire struggle. We will use the IGV Web App, a modern tool that runs entirely in your internet browser (like Chrome, Safari, or Firefox). Think of it as "Google Docs for Genomics"—it provides the full power of a genome browser with zero installation.

Crucially, your data stays with you. Even though the app runs in the cloud, it reads the files directly from your computer's hard drive. You do not need to wait hours to upload your massive files to a server.


Phase 1: Launching the Genome Browser

Let’s set up our digital microscope.

1. Open the App

Open your web browser and navigate to: https://igv.org/app/

Expected Output:

You will see a clean, white interface with a genome track ruler at the top. By default, it usually loads the Human genome (hg38).

2. Select Your Genome

In the top-left corner, you will see a dropdown menu (likely labeled "Genomes"). Click it and select Mouse (mm10).

Why mm10?

Even though our "toy" dataset only contains data for Chromosome 19, the coordinate system we used for alignment was based on the mm10 build of the mouse genome. If you selected a different mouse version (like mm9 or mm39), your peaks would appear in the wrong places (or nowhere at all), because the "addresses" of the genes would be different.

Expected Output:

The track labels will update, and the ruler at the top will show chromosomes 1 through 19, X, and Y.


Phase 2: Loading Your Data

Now we populate the empty map with our own scientific discoveries.

1. Locate Your Files

Open your file manager (Finder on Mac or File Explorer on Windows) and navigate to your project folder (atacseq). You need the two files we generated in the previous chapters:

2. Drag and Drop

Simply click both files and drag them from your folder directly onto the white space in the web browser window.

Expected Output:

Two new horizontal tracks will appear in the browser window:


Phase 3: The Sanity Check (Verification)

Right now, you are looking at the data from "outer space"—zoomed out to show the entire genome. To verify that your analysis pipeline (Trimming → Alignment → Filtering → Peak Calling) actually worked, we need to zoom in to "street view" and check a specific biological landmark.

1. Navigate to the Data

In the search bar at the top of the IGV window, type chr19 and press Enter.

Why? Remember, to save time and RAM, we only aligned reads to Chromosome 19. The rest of the genome is empty!

2. Zoom to a Gene

Now, let's find a specific gene to audit our results. Type Lmnb2 in the search bar and press Enter.

Biological Context: Lmnb2 (Lamin B2) is a "housekeeping gene." It is essential for nuclear structure and is active in almost all cell types. Therefore, we expect its chromatin to be open.

What You Should See:


The Verdict

This visual inspection is the final proof of your analysis.

With your results verified, you can now confidently proceed to use these peaks for downstream analysis, such as motif finding or gene annotation.

← Back: Visualization Home