git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ggtree@107495 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,7 +1,7 @@ |
1 | 1 |
Package: ggtree |
2 | 2 |
Type: Package |
3 | 3 |
Title: a phylogenetic tree viewer for different types of tree annotations |
4 |
-Version: 1.1.15 |
|
4 |
+Version: 1.1.16 |
|
5 | 5 |
Author: Guangchuang Yu and Tommy Tsan-Yuk Lam |
6 | 6 |
Maintainer: Guangchuang Yu <guangchuangyu@gmail.com> |
7 | 7 |
Description: ggtree extends the ggplot2 plotting system which implemented the |
... | ... |
@@ -2,12 +2,16 @@ citHeader("To cite ggtree in publications use:") |
2 | 2 |
|
3 | 3 |
citEntry( |
4 | 4 |
entry = "article", |
5 |
- title = "ggtree: an R package for versatile annotation and visualization of phylogenetic tree", |
|
5 |
+ title = "ggtree: an R package for visualization and annotation of phylogenetic tree with different types of meta-data", |
|
6 | 6 |
author = personList( |
7 |
- as.person("Guangchuang Yu") |
|
8 |
- ), |
|
9 |
- year = "2015", |
|
10 |
- journal = "in prepare", |
|
7 |
+ as.person("Guangchuang Yu"), |
|
8 |
+ as.person("David Smith"), |
|
9 |
+ as.person("Huachen Zhu"), |
|
10 |
+ as.person("Yi Guan"), |
|
11 |
+ as.person("Tommy Tsan-Yuk Lam") |
|
12 |
+ ), |
|
13 |
+ year = "submitted", |
|
14 |
+ journal = "Methods in Ecology and Evolution", |
|
11 | 15 |
volume = "", |
12 | 16 |
issue = "", |
13 | 17 |
number = "", |
... | ... |
@@ -15,7 +19,8 @@ citEntry( |
15 | 19 |
doi = "", |
16 | 20 |
PMID = "", |
17 | 21 |
url = "", |
18 |
- textVersion = |
|
19 |
- "Guangchuang Yu. (2015) ggtree: an R package for versatile annotation and visualization of phylogenetic tree. in prepare" |
|
22 |
+ textVersion = paste("Guangchuang Yu, David Smith, Huachen Zhu, Yi Guan, Tommy Tsan-Yuk Lam.", |
|
23 |
+ "ggtree: an R package for visualization and annotation of phylogenetic tree with different types of meta-data.", |
|
24 |
+ "Methods in Ecology and Evolution submitted") |
|
20 | 25 |
) |
21 | 26 |
|
... | ... |
@@ -42,6 +42,15 @@ library("ggtree") |
42 | 42 |
> --- Richard Dawkins |
43 | 43 |
|
44 | 44 |
|
45 |
+# Citation |
|
46 |
+If you use `r Biocpkg("ggtree")` in published research, please cite: |
|
47 |
+ |
|
48 |
+``` |
|
49 |
+G Yu, D Smith, H Zhu, Y Guan, TTY Lam, |
|
50 |
+ggtree: an R package for visualization and annotation of phylogenetic tree with different types of meta-data. |
|
51 |
+Methods in Ecology and Evolution submitted |
|
52 |
+``` |
|
53 |
+ |
|
45 | 54 |
# Introduction |
46 | 55 |
This project arose from my needs to annotate nucleotide substitutions in the phylogenetic tree, and I found that there is no tree visualization software can do this easily. Existing tree viewers are designed for displaying phylogenetic tree, but not annotating it. Although some tree viewers can displaying bootstrap values in the tree, it is hard/impossible to display other information in the tree. My first solution for displaying nucleotide substituitions in the tree is to add this information in the node/tip names and use traditional tree viewer to show it. I displayed the information in the tree successfully, but I believe this indirect approach is inefficient. |
47 | 56 |
|