diff options
author | zsloan | 2019-08-02 12:24:20 -0500 |
---|---|---|
committer | zsloan | 2019-08-02 12:24:20 -0500 |
commit | bb46f3adb391cbeb4b530869b3a900d2d6004d5b (patch) | |
tree | 6abcf2cddcdb58e1e71b594ee1e7aa3854b2b625 /wqflask | |
parent | 5a886b90383f19c646cb5da8b2b9b0fdd0d9713e (diff) | |
download | genenetwork2-bb46f3adb391cbeb4b530869b3a900d2d6004d5b.tar.gz |
Fixed issue that caused heatmap to not work
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/heatmap/heatmap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/heatmap/heatmap.py b/wqflask/wqflask/heatmap/heatmap.py index 28c5ce12..37454dfb 100644 --- a/wqflask/wqflask/heatmap/heatmap.py +++ b/wqflask/wqflask/heatmap/heatmap.py @@ -127,7 +127,7 @@ class Heatmap(object): trimmed_values = [] for i in range(0, len(samples)): if samples[i] in self.dataset.group.samplelist: - trimmed_samples.append(samples[i]) + trimmed_samples.append(str(samples[i])) trimmed_values.append(values[i]) reaper_results = genotype.regression(strains = trimmed_samples, |