Home About Skills Experience Projects Research Contact
Available for Research Opportunities

Lesther Ouma

Computational Biologist & Software Engineer

Building bridges between biological systems and computational solutions. I develop data-driven tools that accelerate biomedical research and translate complex biological data into actionable insights.

3+
Research Labs
5+
Projects
2
Disciplines
cell_analysis.py
1 import pandas as pd
2 import numpy as np
3 from skimage import measure
4
5 def count_cells(image_stack):
6 # Process time-lapse frames
7 results = []
8 for frame in image_stack:
9 labels = measure.label(frame)
10 props = measure.regionprops(labels)
11 results.append(len(props))
12 return pd.DataFrame(results)|
Sequence Analysis
Processing genomic data
A T G C G A T C A G T C