Chapter 0: Setting Up Your Lab
The Hard Truth
Bioinformatics tools (SAMtools, BWA, etc.) are built for Linux.
They do not have .exe installers. They do not run on standard Windows.
To follow this guide, you need a Terminal.
🪟 For Windows Users (Critical)
Do not use Command Prompt (cmd) or PowerShell. They are not compatible with most biological tools.
You must install WSL (Windows Subsystem for Linux). This puts a real Ubuntu Linux system inside your Windows laptop.
How to Install WSL
-
Open PowerShell as Administrator (Right-click Start Menu -> Terminal (Admin)).
-
Type this command and hit Enter:
wsl —install
-
Restart your computer.
-
When it restarts, a window will pop up asking you to create a “UNIX Username” and “Password”.
- Note: When typing the password, nothing will show on screen. This is normal security.
-
Congratulations. You now have a Linux terminal. Open the app called “Ubuntu” to start.
🍎 For Mac Users
You are lucky. macOS is built on UNIX, just like Linux.
- Press
Cmd + Space. - Type Terminal.
- Press Enter.
- Optional but recommended: Install iTerm2 for a better experience.
🐧 For Linux Users
You are already home.
- Press
Ctrl + Alt + T(on Ubuntu/Debian). - Or search for Terminal in your app menu.
Verify Your Setup
Open your new terminal (Ubuntu on Windows, Terminal on Mac) and type:
echo “Hello Bioinformatics”
If it prints Hello Bioinformatics back to you, you are ready for Chapter 1: Navigation.