- Part 1 (April 13 - 27): Python intro. Material/instructions in
python-introfolder. - Part 2 (April 28 – June 1): Analysis of high-throughput sequencing data. Material/instructions in
htseqfolder. - Part 3 (June 2 – July 7): Analysis of bioimaging data. Material/instructions in
bioimagingfolder.
You need Git for this course.
Check whether Git is already installed:
git --versionIf this prints a version number, you are ready.
Option A (recommended): install Xcode Command Line Tools:
xcode-select --installOption B: install with Homebrew (if you already use Homebrew):
brew install gitInstall Git for Windows:
Then open a new Git Bash or PowerShell window and run:
git --versionUse your distribution package manager:
Ubuntu/Debian:
sudo apt update
sudo apt install gitFedora:
sudo dnf install gitArch Linux:
sudo pacman -S gitAfter installation, verify again:
git --versionGitHub is a website where you can store and share your code repositories online.
- Keep your own work backed up online.
- Track your progress over time with commits.
- Share your code with instructors or collaborators when needed.
- Go to https://github.com/signup.
- Enter your email address and create a password.
- Choose a username (this will be visible to others).
- Verify your email when GitHub sends the confirmation message.
- Sign in at https://github.com.
Optional but recommended for students:
- Use a recognizable username (or add your real name in profile settings).
- Add a profile picture so collaborators can identify you.