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

Method getOverlapContainer

src/rnabloom/util/PafUtils.java:249–256  ·  view source on GitHub ↗
(Overlap q, Collection<Overlap> list)

Source from the content-addressed store, hash-verified

247 }
248
249 private static Overlap getOverlapContainer(Overlap q, Collection<Overlap> list) {
250 for (Overlap m : list) {
251 if (q.qStart >= m.qStart && q.qEnd <= m.qEnd) {
252 return m;
253 }
254 }
255 return null;
256 }
257
258 private static Overlap getOverlapContainer(Overlap q, Collection<Overlap> list, float maxProportion) {
259 int maxOverlapLen = 0;

Callers 1

Calls 1

getOverlapMethod · 0.80

Tested by

no test coverage detected