A library for working with phylogenetic and population genetic data.
v0.32.0
heat_map.hpp
Go to the documentation of this file.
1 #ifndef GENESIS_UTILS_COLOR_HEAT_MAP_H_
2 #define GENESIS_UTILS_COLOR_HEAT_MAP_H_
3 
4 /*
5  Genesis - A toolkit for working with phylogenetic data.
6  Copyright (C) 2014-2023 Lucas Czech
7 
8  This program is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 3 of the License, or
11  (at your option) any later version.
12 
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with this program. If not, see <http://www.gnu.org/licenses/>.
20 
21  Contact:
22  Lucas Czech <lczech@carnegiescience.edu>
23  Department of Plant Biology, Carnegie Institution For Science
24  260 Panama Street, Stanford, CA 94305, USA
25 */
26 
37 
38 #include <limits>
39 #include <memory>
40 #include <string>
41 #include <vector>
42 
43 namespace genesis {
44 namespace utils {
45 
46 // =================================================================================================
47 // Heat Map Parameters
48 // =================================================================================================
49 
51 {
52  // -------------------------------------------------------------------------
53  // Typedefs and Enums
54  // -------------------------------------------------------------------------
55 
67  enum class ColorNorm
68  {
69  kLinear,
72  };
73 
77  enum class NormalizationRange
78  {
79  kAll,
80  kRow,
81  kCol
82  };
83 
84  // -------------------------------------------------------------------------
85  // Constructors
86  // -------------------------------------------------------------------------
87 
95  : color_map( map )
96  {}
97 
98  // -------------------------------------------------------------------------
99  // Data Members
100  // -------------------------------------------------------------------------
101 
102  // Color settings. We are currently not providing the normalization here,
103  // but instead use an enum for that, because the classes are not super well done,
104  // and that would get messy... so instead we introduce more development debt here.
105  // What could go wrong?!
106  // std::unique_ptr<ColorNormalization> color_norm;
107 
112 
117 
130 
139  double min_value = std::numeric_limits<double>::quiet_NaN();
140 
146  double max_value = std::numeric_limits<double>::quiet_NaN();
147 };
148 
149 // =================================================================================================
150 // Heat Map Matrix Functions
151 // =================================================================================================
152 
153 std::unique_ptr<ColorNormalization> make_heatmap_color_norm(
154  Matrix<double> const& values,
155  HeatmapParameters const& parameters
156 );
157 
159  Matrix<double> const& values,
160  HeatmapParameters const& parameters
161 );
162 
163 } // namespace utils
164 } // namespace genesis
165 
166 #endif // include guard
genesis::utils::HeatmapParameters::NormalizationRange::kAll
@ kAll
genesis::utils::ColorMap
Store a list of colors and offer them as a map for values in range [ 0.0, 1.0 ].
Definition: map.hpp:61
genesis::utils::HeatmapParameters::color_norm
ColorNorm color_norm
Select which ColorNormalization to apply to the data.
Definition: heat_map.hpp:116
genesis::utils::HeatmapParameters::NormalizationRange
NormalizationRange
Normalize the colors over the whole matrix, or individually per row or column.
Definition: heat_map.hpp:77
genesis::utils::HeatmapParameters::color_map
ColorMap color_map
Set the ColorMap with all its properties to use for the heatmap.
Definition: heat_map.hpp:111
genesis::utils::HeatmapParameters::ColorNorm
ColorNorm
Type of color normalization to apply.
Definition: heat_map.hpp:67
genesis::utils::HeatmapParameters::HeatmapParameters
HeatmapParameters(ColorMap const &map)
Constructor from a ColorMap.
Definition: heat_map.hpp:94
map.hpp
genesis::utils::HeatmapParameters::ColorNorm::kLogarithmic
@ kLogarithmic
genesis::utils::HeatmapParameters::normalization_range
NormalizationRange normalization_range
Range about which to calculate the min and max value for the normalization.
Definition: heat_map.hpp:129
genesis::utils::Matrix< double >
genesis::utils::HeatmapParameters
Definition: heat_map.hpp:50
genesis::utils::HeatmapParameters::ColorNorm::kDiverging
@ kDiverging
genesis::utils::make_heatmap_color_norm
std::unique_ptr< ColorNormalization > make_heatmap_color_norm(Matrix< double > const &values, HeatmapParameters const &parameters)
Definition: heat_map.cpp:158
matrix.hpp
genesis
Container namespace for all symbols of genesis in order to keep them separate when used as a library.
Definition: placement/formats/edge_color.cpp:42
genesis::utils::HeatmapParameters::min_value
double min_value
Minimum value to use for the color normalization.
Definition: heat_map.hpp:139
color.hpp
Header of Color class.
genesis::utils::HeatmapParameters::ColorNorm::kLinear
@ kLinear
genesis::utils::make_heatmap_matrix
Matrix< Color > make_heatmap_matrix(Matrix< double > const &values, HeatmapParameters const &parameters)
Definition: heat_map.cpp:189
genesis::utils::HeatmapParameters::max_value
double max_value
Maximum value to use for the color normalization.
Definition: heat_map.hpp:146
genesis::utils::HeatmapParameters::NormalizationRange::kCol
@ kCol
genesis::utils::HeatmapParameters::NormalizationRange::kRow
@ kRow