(final String[] kmers, final BloomFilter bf)
| 699 | } |
| 700 | |
| 701 | public static boolean represented(final String[] kmers, final BloomFilter bf) { |
| 702 | for (String kmer : kmers) { |
| 703 | if (!bf.lookup(kmer)) { |
| 704 | return false; |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | return true; |
| 709 | } |
| 710 | |
| 711 | public static boolean represented(final ArrayList<Kmer> kmers, |
| 712 | final BloomFilterDeBruijnGraph graph, |
no test coverage detected