Gamgee
You miserable little maggot. I'll stove your head in!
|
#include <string>
#include <memory>
#include <vector>
Go to the source code of this file.
Namespaces | |
gamgee | |
gamgee::utils | |
utility functions for the gamgee library | |
Functions | |
std::string | gamgee::utils::reverse_complement (const std::string &sequence) |
calculates the reverse complement of a sequence More... | |
std::string | gamgee::utils::complement (const std::string &sequence) |
calculates the complement of a sequence More... | |
std::string | gamgee::utils::complement (std::string &sequence) |
calculates the complement of a sequence in-place More... | |
char | gamgee::utils::complement (const char base) |
calculates the complement of a base More... | |
template<typename T , typename... Args> | |
std::unique_ptr< T > | gamgee::utils::make_unique (Args &&...args) |
herb sutter's implementation of make unique More... | |
std::vector< std::string > | gamgee::utils::hts_string_array_to_vector (const char *const *const string_array, const uint32_t array_size) |
converts an array of c-strings into a vector<string> More... | |