Return whether this vertex is contiguous and not palindromic. */
| 69 | |
| 70 | /** Return whether this vertex is contiguous and not palindromic. */ |
| 71 | bool contiguousIn(const Graph& g, const V& u) |
| 72 | { |
| 73 | return contiguous_in(g, u) |
| 74 | && !u.isPalindrome() |
| 75 | && !u.isPalindrome(ANTISENSE) |
| 76 | && !adjacentVertexIn(u, g).isPalindrome(); |
| 77 | } |
| 78 | |
| 79 | /** Write out the specified contig. */ |
| 80 | void writeContig(std::ostream& out, const Graph& g, const V& u) |
nothing calls this directly
no test coverage detected