... | ... |
@@ -1,5 +1,6 @@ |
1 | 1 |
CHANGES IN VERSION 1.7.2 |
2 | 2 |
------------------------ |
3 |
+ o make missing colors in gheatmap invisible (previously use 'white') <2016-11-03, Thu> |
|
3 | 4 |
o xlim_expand for setting x axis limits of specific panel <2016-11-01, Tue> |
4 | 5 |
+ xlim_tree is now a specific case of xlim_expand(xlim, panel='Tree') |
5 | 6 |
o bug fixed of parsing tree text in beast file <2016-10-31, Mon> |
... | ... |
@@ -79,9 +79,9 @@ gheatmap <- function(p, data, offset=0, width=1, low="green", high="red", color= |
79 | 79 |
p2 <- p + geom_tile(data=dd, aes(x, y, fill=value), width=width, color=color, inherit.aes=FALSE) |
80 | 80 |
} |
81 | 81 |
if (is(dd$value,"numeric")) { |
82 |
- p2 <- p2 + scale_fill_gradient(low=low, high=high, na.value="white") |
|
82 |
+ p2 <- p2 + scale_fill_gradient(low=low, high=high, na.value=NA) # "white") |
|
83 | 83 |
} else { |
84 |
- p2 <- p2 + scale_fill_discrete(na.value="white") |
|
84 |
+ p2 <- p2 + scale_fill_discrete(na.value=NA) #"white") |
|
85 | 85 |
} |
86 | 86 |
|
87 | 87 |
if (colnames) { |
... | ... |
@@ -1,9 +1,9 @@ |
1 | 1 |
ggtree: an R package for visualization and annotation of phylogenetic trees with their covariates and other associated data |
2 | 2 |
=========================================================================================================================== |
3 | 3 |
|
4 |
-[](https://bioconductor.org/packages/ggtree) [](https://github.com/GuangchuangYu/ggtree) [](https://www.bioconductor.org/packages/devel/bioc/html/ggtree.html#since) [](https://bioconductor.org/packages/stats/bioc/ggtree) [](https://bioconductor.org/packages/stats/bioc/ggtree) |
|
4 |
+[](https://bioconductor.org/packages/ggtree) [](https://github.com/GuangchuangYu/ggtree) [](https://www.bioconductor.org/packages/devel/bioc/html/ggtree.html#since) [](https://bioconductor.org/packages/stats/bioc/ggtree) [](https://bioconductor.org/packages/stats/bioc/ggtree) |
|
5 | 5 |
|
6 |
-[](http://www.repostatus.org/#active) [](https://codecov.io/gh/GuangchuangYu/ggtree) [](https://github.com/GuangchuangYu/ggtree/commits/master) [](https://github.com/GuangchuangYu/ggtree/network) [](https://github.com/GuangchuangYu/ggtree/stargazers) [](https://awesome-r.com/#awesome-r-graphic-displays) |
|
6 |
+[](http://www.repostatus.org/#active) [](https://codecov.io/gh/GuangchuangYu/ggtree) [](https://github.com/GuangchuangYu/ggtree/commits/master) [](https://github.com/GuangchuangYu/ggtree/network) [](https://github.com/GuangchuangYu/ggtree/stargazers) [](https://awesome-r.com/#awesome-r-graphic-displays) |
|
7 | 7 |
|
8 | 8 |
[](https://www.bioconductor.org/packages/devel/bioc/html/ggtree.html#archives) [](https://bioconductor.org/checkResults/devel/bioc-LATEST/ggtree/) [](https://travis-ci.org/GuangchuangYu/ggtree) [](https://ci.appveyor.com/project/GuangchuangYu/ggtree) [](http://bioconda.github.io/recipes/bioconductor-ggtree/README.html) |
9 | 9 |
|