comparison render_tree.R @ 1:9f0241ee55e8 draft

planemo upload for repository https://github.com/dfornika/galaxytools/tree/master/tools/render_tree commit 8898f2229ec13917b7d96e20725f3871d9d93e90-dirty
author dfornika
date Sat, 29 Jun 2019 00:27:55 -0400
parents 342fe8c2d8bb
children 96406ba2696b
comparison
equal deleted inserted replaced
0:342fe8c2d8bb 1:9f0241ee55e8
9 tree <- read.tree(args[1]) 9 tree <- read.tree(args[1])
10 10
11 tree_plot <- ggplot(tree, aes(x, y)) + 11 tree_plot <- ggplot(tree, aes(x, y)) +
12 geom_tree() + 12 geom_tree() +
13 theme_tree2() + 13 theme_tree2() +
14 geom_tiplab() 14 geom_tiplab(align=TRUE)
15 15
16 suppressMessages( 16 suppressMessages(
17 ggsave(args[2], plot=tree_plot, device="png") 17 ggsave(args[2], plot=tree_plot, device="png")
18 ) 18 )