In combinatorial indexing experiments, each cell is assigned a barcode by sampling from a pool of possible combinations. When two or more cells receive the same barcode, a collision occurs — analogous to the classic birthday problem in probability theory.
This calculator estimates the expected fraction of cells involved in barcode collisions given your experimental parameters.
P(unique) = ((k - 1) / k) ^ (n - 1)k = total barcode combinations and n = number of cells.collision rate = 1 - ((k - 1) / k) ^ (n - 1)k, this approximates to: 1 - e^(-(n-1)/k)n barcodes uniformly from k options with replacement, then counting the fraction assigned to non-unique barcodes.