Return the complement of the specified base. * The reverse of a single base is a no-op. * If the assembly is in colour space, this is a no-op. */
| 14 | * If the assembly is in colour space, this is a no-op. |
| 15 | */ |
| 16 | static inline uint8_t reverseComplement(uint8_t base) |
| 17 | { |
| 18 | return opt::colourSpace ? base : ~base & 0x3; |
| 19 | } |
| 20 | |
| 21 | /** The adjacent vertices of a Kmer. */ |
| 22 | class SeqExt |
no outgoing calls
no test coverage detected