Method
hasReverseComplementArtifact
(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
Tested by
no test coverage detected