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