(float c)
| 2351 | } |
| 2352 | |
| 2353 | private static int getCoverageOrderOfMagnitude(float c) { |
| 2354 | if (c >= 1e5) { |
| 2355 | return 5; |
| 2356 | } |
| 2357 | else if (c >= 1e4) { |
| 2358 | return 4; |
| 2359 | } |
| 2360 | else if (c >= 1e3) { |
| 2361 | return 3; |
| 2362 | } |
| 2363 | else if (c >= 1e2) { |
| 2364 | return 2; |
| 2365 | } |
| 2366 | else if (c >= 1e1) { |
| 2367 | return 1; |
| 2368 | } |
| 2369 | else { |
| 2370 | return 0; |
| 2371 | } |
| 2372 | } |
| 2373 | |
| 2374 | public void setupKmerScreeningBloomFilter(long sbfNumBits, int sbfNumHash) { |
| 2375 | if (screeningBf == null) { |
no outgoing calls
no test coverage detected