CancerEvolutionVisualization (CEV) creates publication quality phylogenetic tree plots. For simple plots, this package will handle most settings right out of the box. However, more complex plots may require some trial and error to achieve the right arrangement of nodes and branches.
This guide will show best practices for creating plots, as well as examples of common use cases and tips for refining plot settings.
There are many methods for determining subpopulations within genomic data, and you should be free to use whatever method you prefer for a given dataset. This package only handles visualization - not analysis. Therefore, data must be prepared and formatted before being passed to any CEV functions.
This is the primary source of data for a plot. It defines the tree’s structure of parent and child nodes. It also provides information about the number of mutations at each node.
The simplest input format is a column containing the parent node of each individual node. (A node will only have one parent.) The root node will not have a parent, so a value of NA
is used.
parent | |
---|---|
1 | NA |
2 | 1 |
3 | 1 |
4 | 2 |
SRCGrob(parent.only); parent.only.tree <-
It’s common to associate branch lengths with a the values of a particular variable (for example, PGA or SNVs). Up to two branch lengths can be specified. Including a length1
and/or length2
column will enable this branch scaling behaviour, and automatically add y-axis ticks and labels.
Multiple length values can be used together. All columns whose names contain length
will be used. (For example, length1
and snv.length
are both valid.) Multiple columns will result in multiple (distinctly coloured) parallel lines. Any branch length conflicts will be resolved automatically. For each branch, the next node will be placed at the end of the longest line.
parent | length1 | length2 | |
---|---|---|---|
1 | NA | 12 | 850 |
2 | 1 | 10 | 1000 |
3 | 1 | 15 | 1100 |
4 | 2 | 10 | 760 |
SRCGrob(branch.lengths); branch.lengths.tree <-
## Warning in add.axes(clone.out, yaxis.position, scale1 = scale1, scale2 =
## scale2, : Missing second y-axis label
grid.draw(branch.lengths.tree);
A cellular.prevalence
column can also be added. These values must range between 0 and 1, and the sum of all child nodes must not be larger than their parent node’s value.
parent | length1 | length2 | CP | |
---|---|---|---|---|
1 | NA | 12 | 850 | 1.00 |
2 | 1 | 10 | 1000 | 0.40 |
3 | 1 | 15 | 1100 | 0.23 |
4 | 2 | 10 | 760 | 0.31 |
SRCGrob(CP); CP.tree <-
## Warning in add.axes(clone.out, yaxis.position, scale1 = scale1, scale2 =
## scale2, : Missing second y-axis label
This secondary dataframe can be used to specify additional text corresponding to each node.
Each row must include a node ID for the text. Text will be stacked next to the specified node.
name | node |
---|---|
GENE1 | 2 |
GENE2 | 2 |
GENE3 | 2 |
GENE4 | 3 |
GENE5 | 3 |
SRCGrob(parent.only, simple.text.data); simple.text.tree <-
grid.draw(simple.text.tree);
col
column can be included to specify the colour of each text.fontface
column can be included to bold, italicize, etc. These values correspond to the standard R fontface
values.NA
values in each column will default to black
and plain
respectively.name | node | col | fontface |
---|---|---|---|
GENE1 | 2 | red | plain |
GENE2 | 2 | black | plain |
GENE3 | 2 | blue | NA |
GENE4 | 3 | NA | italic |
GENE5 | 3 | red | plain |
SRCGrob(parent.only, text.input); full.text.tree <-
grid.draw(full.text.tree);
The default settings should produce a reasonable baseline plot, but many users will want more control over their plot. This section will highlight some of the most common parameters in SRCGRob
.
Some plots require more or less horizontal padding between the x-axes and the tree itself. The horizontal.padding
parameter scales the default padding proportionally. For example, horizontal.padding = -0.2
would reduce the padding by 20%.
SRCGrob(
padding.tree <-
branch.lengths,horizontal.padding = -0.8
);
## Warning in add.axes(clone.out, yaxis.position, scale1 = scale1, scale2 =
## scale2, : Missing second y-axis label
grid.draw(padding.tree);
Branches are scaled automatically, but users can further scale each branch with the scale1
and scale2
parameters. These values scale each branch proportionally, so scale1 = 1.1
would make the first set of branch lengths 10% longer.
SRCGrob(
scaled.tree <-
branch.lengths,scale1 = 1.5,
scale2 = 0.5
);
## Warning in add.axes(clone.out, yaxis.position, scale1 = scale1, scale2 =
## scale2, : Missing second y-axis label
grid.draw(scaled.tree);
The main title of the plot is referred to as main
in plot parameters. main
sets the title text, main.cex
sets the font size, and main.y
is used to move the main title up if more space is required for the plot.
SRCGrob(
title.tree <-
parent.only,main = 'Example Plot'
);
grid.draw(title.tree);
A y-axis will be added automatically for each branch length column (the left-sided axis corresponding to the first branch length column, and the right with the second length column).
Ticks are placed automatically based on the plot size and the branch lengths.
Axis titles are specified with the yaxis1.label
and yaxis2.label
parameters.
SRCGrob(
axis.title.tree <-
parent.only,yaxis1.label = 'SNVs',
horizontal.padding = -0.6
);
grid.draw(axis.title.tree);
The default axis tick positions can be overridden with the yat
parameter. This expects a list of vectors, each corresponding to the ticks on an x-axis.
c(10, 20, 30, 35, 40);
xaxis1.ticks <- c(100, 250, 400);
xaxis2.ticks <-
SRCGrob(
yat.tree <-
branch.lengths,yat = list(
xaxis1.ticks,
xaxis2.ticks
),horizontal.padding = -0.4
);
## Warning in add.axes(clone.out, yaxis.position, scale1 = scale1, scale2 =
## scale2, : Missing second y-axis label
grid.draw(yat.tree);
SRCGrob(
normal.tree <-
parent.only,add.normal = TRUE
);
grid.draw(normal.tree);