MCPcopy Create free account
hub / github.com/BirolLab/RNA-Bloom / represented

Method represented

src/rnabloom/util/GraphUtils.java:701–709  ·  view source on GitHub ↗
(final String[] kmers, final BloomFilter bf)

Source from the content-addressed store, hash-verified

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,

Callers 3

reduceRedundancyMethod · 0.95
writeMethod · 0.80
runMethod · 0.80

Calls 13

hasDepthLeftMethod · 0.95
greedyExtendLeftMethod · 0.95
getMaxCoveragePathMethod · 0.95
hasDepthRightMethod · 0.95
greedyExtendRightMethod · 0.95
getPercentIdentityMethod · 0.80
assembleMethod · 0.80
lookupMethod · 0.65
getMethod · 0.65
sizeMethod · 0.45
getKMethod · 0.45

Tested by

no test coverage detected