The goal of this competition is to develop an algorithm to identify the presence and location of flagellar motors in 3D reconstructions of bacteria. Automating this traditionally manual task will accelerate the study of macromolecular complexes, which helps answer fundamental questions in molecular biology, improve drug development, and advance synthetic biology.
The flagellar motor is a molecular machine that facilitates the motility of many microorganisms, playing a key role in processes ranging from chemotaxis to pathogenesis. Cryogenic electron tomography (cryo-ET) has enabled us to image these nanomachines in near-native conditions. But identifying flagellar motors in these three-dimensional reconstructions (tomograms) is labor intensive. Factors such as a low signal-to-noise ratio, variable motor orientations, and the complexity of crowded intracellular environments complicate automated identification. Cryo-ET studies become limited by the bottle-neck of a human in the loop. In this contest, your task is to develop an image processing algorithm that identifies the location of a flagellar motor, if it is present.
A tomogram is a three-dimensional image that has been reconstructed from a series of 2D projection images. The images in this challenge are tomograms of bacteria that have been flash-frozen in ice, which preserves the molecular structure of the bacteria for the imaging process. This video walks through slices of a tomogram highlighting different features of a bacterial cell, including a flagellar motor. The accompanying text describes the purpose and function of the motor.
Evaluation Metric
Submissions will be evaluated using a combination of the FβFβ-score and Euclidean distance. The goal is to determine whether a tomogram contains a motor and, if it does, to accurately predict its location.
Let the ground truth be yy and the predicted location be y¯y¯. The Euclidean distance |y−y¯|2|y−y¯|2 determines classification:
– True Positive (TP): If |y−y¯|2≤τ|y−y¯|2≤τ, the prediction is within threshold.
– False Negative (FN): If |y−y¯|2>τ|y−y¯|2>τ, the prediction is outside of threshold.
where τ=1000 τ=1000 Angstroms.
FβFβ-score
The FβFβ-score balances precision and recall, placing greater weight on recall when β>1β>1 and on precision when β<1β<1 (in our case we use β=2β=2, thus we are weighting recall more than precision). It is defined as:
Fβ=(1+β2)⋅precision⋅recall(β2⋅precision)+recall=(1+β2)⋅TP(1+β2)⋅TP+β2⋅FN+FPFβ=(1+β2)⋅precision⋅recall(β2⋅precision)+recall=(1+β2)⋅TP(1+β2)⋅TP+β2⋅FN+FP
This metric ensures that both the presence and location accuracy of predicted motors are considered in the final score.
Submission Format
Your submission should be a CSV file with one row per tomogram found in the test set. IMPORTANT: If you predict that no motor exists, set Motor axis 0
, Motor axis 1
, Motor axis 2
to -1
tomo_id,Motor axis 0,Motor axis 1,Motor axis 2 tomo_003acc,501.1,22.8,429.8 tomo_00e047,-1,-1,-1 tomo_01a877,395.2,335.4,798.0 etc.
Awards:-
- First Prize: $20,000
- Second Prize: $15,000
- Third Prize: $12,000
- Fourth Prize: $10,000
- Fifth Prize: $8,000
Deadline:- 28-05-2025