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

Method hasReverseComplementArtifact

src/rnabloom/util/PafUtils.java:105–113  ·  view source on GitHub ↗
(PafRecord r, int maxEdgeClip)

Source from the content-addressed store, hash-verified

103 }
104
105 public static boolean hasReverseComplementArtifact(PafRecord r, int maxEdgeClip) {
106 if (r.qName.equals(r.tName) && r.reverseComplemented) {
107 if (r.qStart <= maxEdgeClip || r.qLen - r.qEnd <= maxEdgeClip) {
108 return true;
109 }
110 }
111
112 return false;
113 }
114
115 public static enum CONTAIN_STATUS {QUERY, TARGET, BOTH, NEITHER};
116

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected