Codebase list mash / ee811a2
screen: p-value formula update Brian Ondov 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
605605 return 1.;
606606 }
607607
608 double r = 1. / (1. + kmerSpace / setSize);
608 double r = double(setSize) / kmerSpace;
609609
610610 #ifdef USE_BOOST
611611 return cdf(complement(binomial(sketchSize, r), x - 1));