6 #include <SFML/Graphics.hpp> 8 #include <unordered_map> 22 std::unordered_map<std::string,sf::Color> colorAssignment;
31 colormap(std::vector<std::string>& givenKmers, std::vector<sf::Color>& givenColorlist);
44 void updateAssignment(std::vector<std::string>& givenKmers, std::vector<sf::Color>& givenColorlist);
53 sf::Color
Map(std::string Kmer);
std::unordered_map< std::string, sf::Color > giveAssignment()
Definition: colormap.cc:54
This Class stores an unordered_map from strings to colors and a method to map strings (expecially kme...
Definition: colormap.h:20
colormap()
standard Constructor
Definition: colormap.cc:17
void updateAssignment(std::vector< std::string > &givenKmers, std::vector< sf::Color > &givenColorlist)
Definition: colormap.cc:24
sf::Color Map(std::string Kmer)
Definition: colormap.cc:43