btllib
Loading...
Searching...
No Matches
seq.hpp
1
4#ifndef BTLLIB_SEQ_HPP
5#define BTLLIB_SEQ_HPP
6
7#include "btllib/status.hpp"
8
9#include <string>
10
11namespace btllib {
12
13extern const char COMPLEMENTS[256];
14extern const char AMINO_ACIDS[256];
15extern const char CAPITALS[256];
16
22void
23reverse_complement(std::string& seq);
24
33std::string
34get_reverse_complement(const std::string& seq);
35
36} // namespace btllib
37
38#endif
Definition aahash.hpp:12
void reverse_complement(std::string &seq)
std::string get_reverse_complement(const std::string &seq)