MCPcopy Create free account
hub / github.com/BirolLab/abyss / contiguousIn

Method contiguousIn

Assembly/DotWriter.h:71–77  ·  view source on GitHub ↗

Return whether this vertex is contiguous and not palindromic. */

Source from the content-addressed store, hash-verified

69
70/** Return whether this vertex is contiguous and not palindromic. */
71bool 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. */
80void writeContig(std::ostream& out, const Graph& g, const V& u)

Callers

nothing calls this directly

Calls 2

contiguous_inFunction · 0.85
isPalindromeMethod · 0.45

Tested by

no test coverage detected