In [ ]:
%matplotlib inline
from matplotlib import pyplot as plt
import numpy as np
Diana Libuda's lab studies DNA double-strand break repair in C. elegans worms. She uses microscopy to image the worms, using a specific fluoresence marker of double strand breaks. We are going to analyze some of her data and ask whether there is a difference in the number of double strand breaks between her control and experimental conditions.
For each condition, we have a collection of images that are slices through a worm. If you flip through them quickly, you pass through the worm. These images are stitched into short videos below.
In [ ]:
%%HTML
<video width="600" height="600" controls loop autoplay>
<source src="videos/control.mp4" type="video/mp4">
</video>
In [ ]:
%%HTML
<video width="600" height="600" controls loop autoplay>
<source src="videos/experimental.mp4" type="video/mp4">
</video>
The red globs are chromosomes inside nuclei, the green dots are double strand breaks. Your goal is to count the number of double strand breaks per nucleus under these treatment conditions.
The collection of images are available here:
https://www.dropbox.com/s/dry59l6h14cqkkj/worm-images.zip?dl=0
If you unzip the directory, it has the following files and directories.
worm-images
Each zxxx.png file is a slice.
In [ ]: